/* style/how-to-start-registration-process.css */
.page-how-to-start-registration-process {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-how-to-start-registration-process__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-how-to-start-registration-process__section {
    padding: 60px 0;
    text-align: center;
}

.page-how-to-start-registration-process__section:nth-of-type(even) {
    background-color: #e9ecef;
}

.page-how-to-start-registration-process h1,
.page-how-to-start-registration-process h2 {
    color: #0047AB; /* Main color */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-how-to-start-registration-process h1 {
    font-size: 2.8em;
    line-height: 1.2;
}

.page-how-to-start-registration-process h2 {
    font-size: 2.2em;
    margin-top: 40px;
    margin-bottom: 30px;
}

.page-how-to-start-registration-process h3 {
    color: #0047AB; /* Main color */
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-how-to-start-registration-process p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #495057;
}

.page-how-to-start-registration-process__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-how-to-start-registration-process__list li {
    background-color: #ffffff;
    border-left: 5px solid #0047AB; /* Main color */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
    color: #343a40;
}

.page-how-to-start-registration-process__list li strong {
    color: #0047AB;
}

.page-how-to-start-registration-process__list--info li {
    border-left-color: #FFD700; /* Auxiliary color */
}

.page-how-to-start-registration-process__btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-how-to-start-registration-process__btn--primary {
    background-color: #0047AB; /* Main color */
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 71, 171, 0.3);
}

.page-how-to-start-registration-process__btn--primary:hover {
    background-color: #003a8a;
    transform: translateY(-2px);
}

.page-how-to-start-registration-process__btn--large {
    padding: 15px 40px;
    font-size: 1.25em;
}

/* Hero Section */
.page-how-to-start-registration-process__hero {
    background: linear-gradient(135deg, #0047AB 0%, #002e6b 100%); /* Darker gradient for main color */
    color: #ffffff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: left;
}

.page-how-to-start-registration-process__hero-content {
    max-width: 600px;
    padding: 0 20px;
}

.page-how-to-start-registration-process__hero h1 {
    color: #FFD700; /* Auxiliary color for emphasis */
    font-size: 3.5em;
    margin-bottom: 25px;
}

.page-how-to-start-registration-process__hero p {
    color: #e0e0e0;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-how-to-start-registration-process__hero-image-wrapper {
    max-width: 500px;
    flex-shrink: 0;
}

.page-how-to-start-registration-process__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Registration Steps Section */
.page-how-to-start-registration-process__registration-steps {
    background-color: #ffffff;
}

.page-how-to-start-registration-process__step {
    background-color: #fefefe;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.page-how-to-start-registration-process__step h3 {
    color: #0047AB;
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-how-to-start-registration-process__step h3::before {
    content: attr(data-step);
    background-color: #FFD700; /* Auxiliary color */
    color: #0047AB;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    flex-shrink: 0;
}

.page-how-to-start-registration-process__step:nth-child(1) h3::before { content: '1'; }
.page-how-to-start-registration-process__step:nth-child(2) h3::before { content: '2'; }
.page-how-to-start-registration-process__step:nth-child(3) h3::before { content: '3'; }
.page-how-to-start-registration-process__step:nth-child(4) h3::before { content: '4'; }

.page-how-to-start-registration-process__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Important Notes Section */
.page-how-to-start-registration-process__important-notes .page-how-to-start-registration-process__list li {
    border-left-color: #FFD700;
}

.page-how-to-start-registration-process__feature-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* New Member Offers Section */
.page-how-to-start-registration-process__new-member-offers {
    background-color: #0047AB;
    color: #ffffff;
}

.page-how-to-start-registration-process__new-member-offers h2 {
    color: #FFD700;
}

.page-how-to-start-registration-process__new-member-offers p {
    color: #e0e0e0;
}

.page-how-to-start-registration-process__offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-how-to-start-registration-process__offer-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-how-to-start-registration-process__offer-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
}

.page-how-to-start-registration-process__offer-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.page-how-to-start-registration-process__offer-card h3 {
    color: #FFD700;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.page-how-to-start-registration-process__offer-card p {
    color: #ffffff;
    font-size: 1em;
}

.page-how-to-start-registration-process__offer-cta {
    font-style: italic;
    font-size: 1.1em;
    margin-top: 30px;
}

/* FAQ Section */
.page-how-to-start-registration-process__faq {
    text-align: left;
}

.page-how-to-start-registration-process__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-how-to-start-registration-process__faq-item h3 {
    color: #0047AB;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-how-to-start-registration-process__faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-how-to-start-registration-process__faq-item.active h3::after {
    content: '-';
    transform: rotate(180deg);
}

.page-how-to-start-registration-process__faq-item p {
    display: none;
    margin-top: 10px;
    padding-left: 10px;
    border-left: 3px solid #FFD700;
    color: #555;
}

.page-how-to-start-registration-process__faq-item.active p {
    display: block;
}

.page-how-to-start-registration-process__faq-image {
    max-width: 700px;
    width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Final CTA Section */
.page-how-to-start-registration-process__cta-final {
    background-color: #003a8a; /* Slightly darker main color */
    color: #ffffff;
    padding: 80px 0;
}

.page-how-to-start-registration-process__cta-final h2 {
    color: #FFD700;
    font-size: 2.5em;
}

.page-how-to-start-registration-process__cta-final p {
    color: #e0e0e0;
    font-size: 1.15em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-how-to-start-registration-process__hero {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .page-how-to-start-registration-process__hero-content {
        max-width: 100%;
    }

    .page-how-to-start-registration-process__hero h1 {
        font-size: 2.8em;
    }

    .page-how-to-start-registration-process__hero-image-wrapper {
        max-width: 80%;
    }

    .page-how-to-start-registration-process h1 {
        font-size: 2.4em;
    }

    .page-how-to-start-registration-process h2 {
        font-size: 1.8em;
    }

    .page-how-to-start-registration-process h3 {
        font-size: 1.4em;
    }

    .page-how-to-start-registration-process__offers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-how-to-start-registration-process__section {
        padding: 40px 0;
    }

    .page-how-to-start-registration-process__hero h1 {
        font-size: 2.2em;
    }

    .page-how-to-start-registration-process__hero p {
        font-size: 1em;
    }

    .page-how-to-start-registration-process h1 {
        font-size: 2em;
    }

    .page-how-to-start-registration-process h2 {
        font-size: 1.6em;
    }

    .page-how-to-start-registration-process h3 {
        font-size: 1.3em;
    }

    .page-how-to-start-registration-process p {
        font-size: 0.95em;
    }

    .page-how-to-start-registration-process__btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-how-to-start-registration-process__btn--large {
        padding: 12px 30px;
        font-size: 1.1em;
    }

    .page-how-to-start-registration-process__step h3::before {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-how-to-start-registration-process__hero-content {
        padding: 0 15px;
    }

    .page-how-to-start-registration-process__hero h1 {
        font-size: 1.8em;
    }

    .page-how-to-start-registration-process__hero p {
        font-size: 0.9em;
    }

    .page-how-to-start-registration-process h1 {
        font-size: 1.8em;
    }

    .page-how-to-start-registration-process h2 {
        font-size: 1.4em;
    }

    .page-how-to-start-registration-process h3 {
        font-size: 1.2em;
    }

    .page-how-to-start-registration-process__list li {
        padding: 10px 15px;
        font-size: 0.9em;
    }
}