/* style/registration-login-account-creation-steps.css */
.page-registration-login-account-creation-steps {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-registration-login-account-creation-steps__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-registration-login-account-creation-steps__hero-section {
    background: linear-gradient(135deg, #003366 0%, #004488 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-registration-login-account-creation-steps__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at top left, rgba(255, 204, 0, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    opacity: 0.8;
}

.page-registration-login-account-creation-steps__main-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFCC00; /* Auxiliary color for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.page-registration-login-account-creation-steps__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-registration-login-account-creation-steps__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 1;
}

.page-registration-login-account-creation-steps__btn--primary {
    background-color: #FFCC00; /* Auxiliary color */
    color: #003366; /* Main color for text */
}

.page-registration-login-account-creation-steps__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-registration-login-account-creation-steps__btn--secondary {
    background-color: #003366; /* Main color */
    color: #ffffff;
    border: 2px solid #FFCC00;
}

.page-registration-login-account-creation-steps__btn--secondary:hover {
    background-color: #004488;
    border-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-registration-login-account-creation-steps__btn--text {
    background: none;
    color: #003366;
    padding: 8px 0;
    font-size: 1em;
    border-bottom: 2px solid #FFCC00;
    border-radius: 0;
}

.page-registration-login-account-creation-steps__btn--text:hover {
    color: #FFCC00;
    border-bottom-color: #003366;
}

.page-registration-login-account-creation-steps__btn--large {
    padding: 15px 40px;
    font-size: 1.3em;
}

.page-registration-login-account-creation-steps__section {
    padding: 60px 0;
}

.page-registration-login-account-creation-steps__section:nth-of-type(even) {
    background-color: #f0f2f5;
}

.page-registration-login-account-creation-steps__section-title {
    font-size: 2.2em;
    color: #003366; /* Main color */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-registration-login-account-creation-steps__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00; /* Auxiliary color */
    border-radius: 2px;
}

.page-registration-login-account-creation-steps__intro-text {
    text-align: center;
    font-size: 1.1em;
    max-width: 900px;
    margin: -20px auto 50px auto;
    color: #555;
}

.page-registration-login-account-creation-steps__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-registration-login-account-creation-steps__feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-registration-login-account-creation-steps__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-registration-login-account-creation-steps__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-registration-login-account-creation-steps__feature-title {
    font-size: 1.5em;
    color: #003366; /* Main color */
    margin-bottom: 15px;
}

.page-registration-login-account-creation-steps__feature-description {
    color: #666;
}

.page-registration-login-account-creation-steps__step-by-step {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.page-registration-login-account-creation-steps__step-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.page-registration-login-account-creation-steps__step-number {
    background-color: #FFCC00; /* Auxiliary color */
    color: #003366; /* Main color */
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-registration-login-account-creation-steps__step-content {
    flex-grow: 1;
}

.page-registration-login-account-creation-steps__step-title {
    font-size: 1.8em;
    color: #003366; /* Main color */
    margin-top: 0;
    margin-bottom: 15px;
}

.page-registration-login-account-creation-steps__step-content p {
    margin-bottom: 15px;
    color: #444;
}

.page-registration-login-account-creation-steps__checklist {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-registration-login-account-creation-steps__checklist li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #444;
}

.page-registration-login-account-creation-steps__checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFCC00; /* Auxiliary color */
    font-weight: bold;
    font-size: 1.2em;
}

.page-registration-login-account-creation-steps__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-registration-login-account-creation-steps__bullet-list {
    list-style: none;
    padding-left: 0;
    max-width: 900px;
    margin: 0 auto;
}

.page-registration-login-account-creation-steps__bullet-list li {
    background-color: #ffffff;
    padding: 20px;
    border-left: 5px solid #003366; /* Main color */
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #333;
}

.page-registration-login-account-creation-steps__bullet-list li strong {
    color: #003366;
}

.page-registration-login-account-creation-steps__content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-registration-login-account-creation-steps__content-block {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-registration-login-account-creation-steps__block-title {
    font-size: 1.6em;
    color: #003366; /* Main color */
    margin-top: 0;
    margin-bottom: 15px;
}

.page-registration-login-account-creation-steps__block-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-registration-login-account-creation-steps__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-registration-login-account-creation-steps__faq-item {
    background-color: #ffffff;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.page-registration-login-account-creation-steps__faq-question {
    font-size: 1.3em;
    color: #003366; /* Main color */
    margin-top: 0;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-registration-login-account-creation-steps__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFCC00; /* Auxiliary color */
    transition: transform 0.3s ease;
}

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

.page-registration-login-account-creation-steps__faq-answer {
    font-size: 1em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding-top: 0;
}

.page-registration-login-account-creation-steps__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

.page-registration-login-account-creation-steps__cta-section {
    background-color: #003366; /* Main color */
    color: #ffffff;
    padding: 70px 0;
    text-align: center;
}

.page-registration-login-account-creation-steps__cta-title {
    font-size: 2.5em;
    color: #FFCC00; /* Auxiliary color */
    margin-bottom: 20px;
}

.page-registration-login-account-creation-steps__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-registration-login-account-creation-steps__main-title {
        font-size: 2.2em;
    }

    .page-registration-login-account-creation-steps__subtitle {
        font-size: 1.1em;
    }

    .page-registration-login-account-creation-steps__section-title {
        font-size: 1.8em;
    }

    .page-registration-login-account-creation-steps__features-grid {
        grid-template-columns: 1fr;
    }

    .page-registration-login-account-creation-steps__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-registration-login-account-creation-steps__step-number {
        margin-bottom: 20px;
    }

    .page-registration-login-account-creation-steps__checklist li {
        padding-left: 25px;
    }

    .page-registration-login-account-creation-steps__checklist li::before {
        left: 0;
    }

    .page-registration-login-account-creation-steps__content-grid {
        grid-template-columns: 1fr;
    }

    .page-registration-login-account-creation-steps__cta-title {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .page-registration-login-account-creation-steps__hero-section {
        padding: 60px 0;
    }

    .page-registration-login-account-creation-steps__main-title {
        font-size: 1.8em;
    }

    .page-registration-login-account-creation-steps__subtitle {
        font-size: 1em;
    }

    .page-registration-login-account-creation-steps__btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-registration-login-account-creation-steps__section {
        padding: 40px 0;
    }

    .page-registration-login-account-creation-steps__section-title {
        font-size: 1.5em;
    }

    .page-registration-login-account-creation-steps__feature-title {
        font-size: 1.3em;
    }

    .page-registration-login-account-creation-steps__step-title {
        font-size: 1.5em;
    }

    .page-registration-login-account-creation-steps__faq-question {
        font-size: 1.1em;
    }

    .page-registration-login-account-creation-steps__cta-title {
        font-size: 1.8em;
    }
    .page-registration-login-account-creation-steps__btn--large {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}