/* style/index-registration-process.css */

/* Variables */
:root {
    --primary-color: #2F6BFF;
    --secondary-color: #6FA3FF;
    --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --card-bg: #FFFFFF;
    --page-bg: #F4F7FB;
    --text-main: #1F2D3D;
    --text-dark: #000000; /* Custom Color_1776249996415 */
    --border-color: #D6E2FF;
    --glow-color: #A5C4FF;
    --container-max-width: 1200px;
    --spacing-sm: 15px;
    --spacing-md: 30px;
    --spacing-lg: 60px;
}

/* Base styles for the page content */
.page-index-registration-process {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* Default text color for light body background */
    background-color: var(--page-bg); /* Explicitly set page background */
}

/* Container for content sections */
.page-index-registration-process__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    box-sizing: border-box;
}

/* Section styling */
.page-index-registration-process__hero-section,
.page-index-registration-process__intro-section,
.page-index-registration-process__step-guide,
.page-index-registration-process__benefits-section,
.page-index-registration-process__faq-section,
.page-index-registration-process__cta-section {
    padding: var(--spacing-lg) 0;
    position: relative;
    overflow: hidden; /* Ensure no overflow */
}

/* Specific background colors for sections based on requirements */
.page-index-registration-process__light-bg {
    background-color: var(--page-bg);
    color: var(--text-main);
}

.page-index-registration-process__dark-bg {
    background-color: var(--primary-color);
    color: #ffffff; /* Forced white text for dark background */
}

.page-index-registration-process__card-bg {
    background-color: var(--card-bg); /* Use card background for this section */
    color: var(--text-main);
}

/* Hero Section */
.page-index-registration-process__hero-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--page-bg); /* Default background for hero if image isn't full cover */
}

.page-index-registration-process__hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: var(--spacing-md);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-index-registration-process__hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.page-index-registration-process__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
    color: var(--text-dark); /* Use #000000 for main title for strong contrast */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

.page-index-registration-process__hero-description {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: var(--spacing-md);
}

/* Section Titles */
.page-index-registration-process__section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark); /* Strong dark color for section titles */
}

.page-index-registration-process__dark-bg .page-index-registration-process__section-title {
    color: #ffffff; /* White title on dark background */
}

/* Text blocks */
.page-index-registration-process__text-block {
    font-size: 1rem;
    margin-bottom: 1em;
    color: var(--text-main);
    text-align: justify;
}

.page-index-registration-process__dark-bg .page-index-registration-process__text-block {
    color: #ffffff;
}

/* Highlighted text */
.page-index-registration-process__text-block .highlight {
    font-weight: bold;
    color: var(--primary-color);
}
.page-index-registration-process__dark-bg .page-index-registration-process__text-block .highlight {
    color: var(--secondary-color); /* Lighter highlight on dark background */
}

/* Buttons */
.page-index-registration-process__btn-primary,
.page-index-registration-process__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    max-width: 100%; /* Ensure button adapts */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow long words to break */
}

.page-index-registration-process__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-right: var(--spacing-sm);
}

.page-index-registration-process__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-index-registration-process__btn-secondary {
    background: var(--card-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-index-registration-process__btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Step Guide Section */
.page-index-registration-process__step-guide {
    background-color: var(--page-bg); /* White background as per requirement */
    color: var(--text-main);
}

.page-index-registration-process__step-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    text-align: center;
}

.page-index-registration-process__step-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.page-index-registration-process__step-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: var(--spacing-sm) auto var(--spacing-md) auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-registration-process__list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: var(--spacing-sm);
    text-align: left;
    color: var(--text-main);
}

.page-index-registration-process__list li {
    margin-bottom: 8px;
}

/* Benefits Section */
.page-index-registration-process__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.page-index-registration-process__benefit-card {
    background-color: var(--card-bg);
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-main); /* Ensure dark text on light card */
}

.page-index-registration-process__benefit-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.page-index-registration-process__benefits-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: var(--spacing-md) auto 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-index-registration-process__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-index-registration-process__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-index-registration-process__faq-item details {
    list-style: none; /* Hide default marker */
}

.page-index-registration-process__faq-item details > summary {
    list-style: none; /* Hide default marker for Chrome */
}

.page-index-registration-process__faq-item details > summary::-webkit-details-marker {
    display: none; /* Hide default marker for Webkit browsers */
}

.page-index-registration-process__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark); /* Dark text for questions */
    cursor: pointer;
    background-color: var(--card-bg);
    transition: background-color 0.3s ease;
}

.page-index-registration-process__faq-question:hover {
    background-color: #f8f8f8;
}

.page-index-registration-process__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--primary-color);
    margin-left: 15px;
}

.page-index-registration-process__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.6;
}

.page-index-registration-process__faq-answer p {
    margin-top: 0;
    margin-bottom: 0;
}

/* CTA Section */
.page-index-registration-process__cta-section {
    text-align: center;
}

.page-index-registration-process__cta-section .page-index-registration-process__text-block {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--spacing-md);
}

.page-index-registration-process__cta-button {
    margin: 0 10px 15px; /* Add some margin between buttons and below */
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .page-index-registration-process__main-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    .page-index-registration-process__section-title {
        font-size: 1.8rem;
    }
    .page-index-registration-process__hero-description {
        font-size: 1rem;
    }
    .page-index-registration-process__btn-primary,
    .page-index-registration-process__btn-secondary {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    /* General mobile padding */
    .page-index-registration-process__container {
        padding: 0 15px;
    }

    /* Sections */
    .page-index-registration-process__hero-section,
    .page-index-registration-process__intro-section,
    .page-index-registration-process__step-guide,
    .page-index-registration-process__benefits-section,
    .page-index-registration-process__faq-section,
    .page-index-registration-process__cta-section {
        padding: var(--spacing-md) 0;
    }
    
    .page-index-registration-process__hero-section {
        padding-top: 10px !important; /* body already handles header offset */
    }

    /* Titles */
    .page-index-registration-process__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: var(--spacing-sm);
    }
    .page-index-registration-process__section-title {
        font-size: 1.6rem;
        margin-bottom: var(--spacing-sm);
    }
    .page-index-registration-process__step-title {
        font-size: 1.5rem;
    }
    .page-index-registration-process__benefit-title {
        font-size: 1.2rem;
    }
    .page-index-registration-process__hero-description {
        font-size: 0.95rem;
    }
    .page-index-registration-process__text-block,
    .page-index-registration-process__list li,
    .page-index-registration-process__faq-answer p {
        font-size: 0.95rem;
    }
    .page-index-registration-process__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    /* Buttons */
    .page-index-registration-process__btn-primary,
    .page-index-registration-process__btn-secondary,
    .page-index-registration-process a[class*="button"],
    .page-index-registration-process a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 15px !important; /* Stack buttons */
    }
    
    .page-index-registration-process__cta-section .page-index-registration-process__container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px; /* Space between stacked buttons */
    }

    /* Images */
    .page-index-registration-process img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }
    
    /* Image containers */
    .page-index-registration-process__hero-section,
    .page-index-registration-process__step-item,
    .page-index-registration-process__benefits-grid,
    .page-index-registration-process__benefit-card,
    .page-index-registration-process__faq-item,
    .page-index-registration-process__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    /* Override specific container padding if needed, but general container should apply */
    .page-index-registration-process__hero-section .page-index-registration-process__container,
    .page-index-registration-process__intro-section .page-index-registration-process__container,
    .page-index-registration-process__step-guide .page-index-registration-process__container,
    .page-index-registration-process__benefits-section .page-index-registration-process__container,
    .page-index-registration-process__faq-section .page-index-registration-process__container,
    .page-index-registration-process__cta-section .page-index-registration-process__container {
        padding-left: 0;
        padding-right: 0;
    }

    .page-index-registration-process__benefits-grid {
        grid-template-columns: 1fr; /* Stack cards on mobile */
    }
}