/* style/register-login-registration-process.css */

/* Base Styles */
.page-register-login-registration-process {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light grey text for dark background */
    background-color: #1A202C; /* Main dark background */
}

.page-register-login-registration-process__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-register-login-registration-process__section {
    padding: 60px 0;
}

.page-register-login-registration-process__section:nth-child(odd) {
    background-color: #2D3748; /* Slightly lighter dark background for contrast */
}

.page-register-login-registration-process__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-register-login-registration-process__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-register-login-registration-process__section-description {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #B0B0B0;
}

.page-register-login-registration-process .highlight {
    color: #FFD700;
    font-weight: bold;
}

/* Buttons */
.page-register-login-registration-process__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-register-login-registration-process__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A202C; /* Dark text on gold */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-register-login-registration-process__btn--primary:hover {
    background-color: #E6C200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-register-login-registration-process__btn--secondary {
    background-color: #3A475C; /* Darker blue-grey button */
    color: #FFD700; /* Gold text on dark button */
    border: 1px solid #FFD700;
}

.page-register-login-registration-process__btn--secondary:hover {
    background-color: #4A5B70;
    color: #FFFFFF;
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

.page-register-login-registration-process__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-register-login-registration-process__inline-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-register-login-registration-process__inline-link:hover {
    text-decoration: underline;
}

/* Hero Section */
.page-register-login-registration-process__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3A475C 100%); /* Gradient dark background */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-register-login-registration-process__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-register-login-registration-process__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Register Section */
.page-register-login-registration-process__section--why-register {
    background-color: #1A202C;
}

.page-register-login-registration-process__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-register-login-registration-process__grid--2-cols {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-register-login-registration-process__feature-card {
    background-color: #2D3748;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register-login-registration-process__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-register-login-registration-process__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-register-login-registration-process__feature-card h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-register-login-registration-process__feature-card p {
    color: #B0B0B0;
}

/* Step-by-Step Section */
.page-register-login-registration-process__step-by-step {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.page-register-login-registration-process__step-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background-color: #2D3748;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-register-login-registration-process__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #FFD700;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #FFD700;
    border-radius: 50%;
    background-color: #1A202C;
    flex-shrink: 0;
}

.page-register-login-registration-process__step-content h3 {
    color: #FFD700;
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-register-login-registration-process__step-content p {
    color: #E0E0E0;
    margin-bottom: 15px;
}

.page-register-login-registration-process__step-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-register-login-registration-process__step-content ul li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #E0E0E0;
}

.page-register-login-registration-process__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Tips Section */
.page-register-login-registration-process__section--tips {
    background-color: #1A202C;
}

.page-register-login-registration-process__list {
    list-style: none;
    padding-left: 0;
    max-width: 800px;
    margin: 0 auto;
}

.page-register-login-registration-process__list li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23FFD700"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"/></svg>') no-repeat left 8px;
    background-size: 24px;
    padding: 8px 0 8px 40px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #E0E0E0;
    border-bottom: 1px dashed #3A475C;
}

.page-register-login-registration-process__list li:last-child {
    border-bottom: none;
}

.page-register-login-registration-process__list li strong {
    color: #FFD700;
}

/* After Registration Section */
.page-register-login-registration-process__section--after-reg {
    background-color: #2D3748;
    text-align: center;
}

.page-register-login-registration-process__section--after-reg p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #B0B0B0;
}

.page-register-login-registration-process__card {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-register-login-registration-process__card h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-register-login-registration-process__card p {
    color: #E0E0E0;
    margin-bottom: 25px;
}

.page-register-login-registration-process__cta-text {
    margin-top: 40px;
    font-size: 1.2em;
    color: #E0E0E0;
}

/* FAQ Section */
.page-register-login-registration-process__section--faq {
    background-color: #1A202C;
}

.page-register-login-registration-process__faq-item {
    background-color: #2D3748;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-register-login-registration-process__faq-question {
    color: #FFD700;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-register-login-registration-process__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-register-login-registration-process__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-register-login-registration-process__faq-answer {
    color: #E0E0E0;
    font-size: 1.05em;
    display: none;
    margin-top: 15px;
}

.page-register-login-registration-process__faq-answer.show {
    display: block;
}

/* Final CTA Section */
.page-register-login-registration-process__cta-final {
    background: linear-gradient(135deg, #FFD700 0%, #E6C200 100%); /* Gold gradient background */
    padding: 80px 0;
    text-align: center;
    color: #1A202C; /* Dark text on gold background */
}

.page-register-login-registration-process__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #1A202C;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.page-register-login-registration-process__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #3A475C;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-register-login-registration-process__hero-title {
        font-size: 2.5em;
    }

    .page-register-login-registration-process__section-title {
        font-size: 2em;
    }

    .page-register-login-registration-process__grid {
        grid-template-columns: 1fr;
    }

    .page-register-login-registration-process__step-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .page-register-login-registration-process__step-number {
        margin-bottom: 20px;
    }

    .page-register-login-registration-process__cta-title {
        font-size: 2.2em;
    }

    .page-register-login-registration-process__list li {
        padding-left: 30px;
        background-position: left top 10px;
    }
}

@media (max-width: 480px) {
    .page-register-login-registration-process__hero-title {
        font-size: 2em;
    }

    .page-register-login-registration-process__hero-subtitle,
    .page-register-login-registration-process__section-description,
    .page-register-login-registration-process__cta-description {
        font-size: 1em;
    }

    .page-register-login-registration-process__btn {
        padding: 12px 20px;
        font-size: 0.9em;
    }

    .page-register-login-registration-process__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-register-login-registration-process__section {
        padding: 40px 0;
    }
}