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

.page-registration-guide-create-account__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-registration-guide-create-account__hero-section {
    background: linear-gradient(135deg, #0A2342 0%, #1A3F6D 70%, #FFD700 100%);
    color: #fff;
    padding: 80px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

.page-registration-guide-create-account__hero-content {
    flex: 1 1 500px;
    max-width: 600px;
    padding: 20px;
}

.page-registration-guide-create-account__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for main title */
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-registration-guide-create-account__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-registration-guide-create-account__hero-image-wrapper {
    flex: 1 1 400px;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-registration-guide-create-account__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-registration-guide-create-account__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-registration-guide-create-account__section:nth-of-type(even) {
    background-color: #f0f2f5;
}

.page-registration-guide-create-account__section-title {
    font-size: 2.5em;
    color: #0A2342;
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-registration-guide-create-account__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}

/* CTA Button Styling */
.page-registration-guide-create-account__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-registration-guide-create-account__cta-button--primary {
    background-color: #FFD700;
    color: #0A2342; /* Ensure good contrast */
    border: 2px solid #FFD700;
}

.page-registration-guide-create-account__cta-button--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-registration-guide-create-account__cta-button--small {
    padding: 10px 20px;
    font-size: 0.95em;
}

/* Why Choose Section */
.page-registration-guide-create-account__why-choose {
    background-color: #fff;
}

.page-registration-guide-create-account__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-registration-guide-create-account__feature-item {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    border-top: 5px solid #0A2342;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-registration-guide-create-account__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.page-registration-guide-create-account__feature-title {
    font-size: 1.6em;
    color: #0A2342;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-registration-guide-create-account__feature-item p {
    color: #666;
    font-size: 1em;
    line-height: 1.7;
}

.page-registration-guide-create-account__section-image {
    max-width: 80%;
    height: auto;
    margin: 40px auto 0 auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-registration-guide-create-account__section-image--center {
    max-width: 60%;
}

/* Registration Steps Section */
.page-registration-guide-create-account__registration-steps {
    background-color: #f0f2f5;
}

.page-registration-guide-create-account__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-registration-guide-create-account__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    padding-top: 70px;
}

.page-registration-guide-create-account__step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -30px);
    background-color: #FFD700;
    color: #0A2342; /* Ensure good contrast */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2em;
    font-weight: bold;
    border: 4px solid #0A2342;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.page-registration-guide-create-account__step-title {
    font-size: 1.8em;
    color: #0A2342;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-registration-guide-create-account__step-item p {
    color: #666;
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 20px;
}

.page-registration-guide-create-account__step-image {
    max-width: 90%;
    height: auto;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Important Notes Section */
.page-registration-guide-create-account__important-notes {
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.page-registration-guide-create-account__important-notes .page-registration-guide-create-account__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.page-registration-guide-create-account__important-notes .page-registration-guide-create-account__section-title,
.page-registration-guide-create-account__important-notes .page-registration-guide-create-account__section-description {
    flex-basis: 100%;
}

.page-registration-guide-create-account__note-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1 1 45%;
    min-width: 300px;
    text-align: left;
}

.page-registration-guide-create-account__note-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #333;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.page-registration-guide-create-account__list-icon {
    font-size: 1.2em;
    color: #FFD700;
    margin-right: 10px;
    font-weight: bold;
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #0A2342;
    color: #FFD700; /* Ensure good contrast */
}

.page-registration-guide-create-account__section-image--right {
    flex: 1 1 45%;
    min-width: 300px;
    max-width: 500px;
    margin: 0;
}

/* Next Steps Section */
.page-registration-guide-create-account__next-steps {
    background-color: #f0f2f5;
}

.page-registration-guide-create-account__action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-registration-guide-create-account__action-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    border-bottom: 5px solid #FFD700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-registration-guide-create-account__action-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.page-registration-guide-create-account__action-title {
    font-size: 1.6em;
    color: #0A2342;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-registration-guide-create-account__action-item p {
    color: #666;
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 20px;
}

.page-registration-guide-create-account__action-image {
    max-width: 80%;
    height: auto;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* FAQ Section */
.page-registration-guide-create-account__faq-section {
    background-color: #fff;
}

.page-registration-guide-create-account__faq-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.page-registration-guide-create-account__faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-registration-guide-create-account__faq-question {
    font-size: 1.4em;
    color: #0A2342;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
}

.page-registration-guide-create-account__faq-question::after {
    content: '+';
    font-size: 1.2em;
    margin-left: 10px;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-registration-guide-create-account__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-registration-guide-create-account__faq-answer {
    font-size: 1em;
    color: #555;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.page-registration-guide-create-account__faq-answer.open {
    max-height: 500px; /* Adjusted for expanded content */
}

/* Final CTA Section */
.page-registration-guide-create-account__cta-final {
    background: #0A2342;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.page-registration-guide-create-account__cta-final-content {
    max-width: 900px;
}

.page-registration-guide-create-account__cta-final .page-registration-guide-create-account__section-title {
    color: #FFD700;
    margin-bottom: 20px;
}

.page-registration-guide-create-account__cta-final .page-registration-guide-create-account__section-description {
    color: #e0e0e0;
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-registration-guide-create-account__hero-section {
        flex-direction: column;
        text-align: center;
    }

    .page-registration-guide-create-account__hero-image-wrapper {
        margin-top: 40px;
    }

    .page-registration-guide-create-account__main-title {
        font-size: 2.5em;
    }

    .page-registration-guide-create-account__section-title {
        font-size: 2em;
    }

    .page-registration-guide-create-account__important-notes .page-registration-guide-create-account__container {
        flex-direction: column;
    }

    .page-registration-guide-create-account__note-list,
    .page-registration-guide-create-account__section-image--right {
        flex: 1 1 100%;
        max-width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .page-registration-guide-create-account__hero-section {
        padding: 60px 0;
    }

    .page-registration-guide-create-account__main-title {
        font-size: 2em;
    }

    .page-registration-guide-create-account__subtitle {
        font-size: 1.1em;
    }

    .page-registration-guide-create-account__section {
        padding: 40px 0;
    }

    .page-registration-guide-create-account__section-title {
        font-size: 1.8em;
    }

    .page-registration-guide-create-account__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-registration-guide-create-account__feature-item,
    .page-registration-guide-create-account__step-item,
    .page-registration-guide-create-account__action-item {
        padding: 25px;
    }
}