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

/* Body background from shared.css is var(--bg-color) which is #08160F (Deep Green/Dark). 
   Therefore, text colors for main content should be light. */

:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --text-main-color: #F2FFF6;
    --text-secondary-color: #A7D9B8;
    --card-bg-color: #11271B;
    --border-color: #2E7A4E;
    --background-color: #08160F; /* Main body background */
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
}

.page-index-registration-process {
    font-family: 'Arial', sans-serif;
    color: var(--text-main-color); /* Default text color for the page */
    background-color: var(--background-color); /* Ensure consistency with body background */
}

.page-index-registration-process__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    overflow: hidden;
    background-color: var(--deep-green-color);
}

.page-index-registration-process__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
}

.page-index-registration-process__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-index-registration-process__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
    color: var(--text-main-color);
}

.page-index-registration-process__main-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--gold-color);
    letter-spacing: -0.05em;
}

.page-index-registration-process__hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-secondary-color);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-registration-process__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-index-registration-process__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

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

.page-index-registration-process__section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--background-color);
    color: var(--text-main-color);
}

.page-index-registration-process__dark-section {
    background-color: var(--deep-green-color);
}

.page-index-registration-process__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-index-registration-process__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--gold-color);
    position: relative;
    padding-bottom: 15px;
}

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

.page-index-registration-process__section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text-secondary-color);
}

.page-index-registration-process__grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.page-index-registration-process__card {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    color: var(--text-main-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-registration-process__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-index-registration-process__card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary-color);
}

.page-index-registration-process__image-content {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-index-registration-process__registration-guide .page-index-registration-process__section-description {
    margin-bottom: 40px;
}

.page-index-registration-process__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    text-align: left;
}

.page-index-registration-process__step-card {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    color: var(--text-main-color);
}

.page-index-registration-process__step-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--gold-color);
}

.page-index-registration-process__step-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: var(--text-secondary-color);
}

.page-index-registration-process__step-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    color: var(--text-secondary-color);
}

.page-index-registration-process__step-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.page-index-registration-process__step-list li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-index-registration-process__link {
    color: var(--glow-color);
    text-decoration: none;
    font-weight: 600;
}

.page-index-registration-process__link:hover {
    text-decoration: underline;
}

.page-index-registration-process__contact-info {
    margin-top: 40px;
    font-size: 1.1rem;
    color: var(--text-secondary-color);
}

.page-index-registration-process__contact-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-index-registration-process__contact-list li {
    margin-bottom: 10px;
}

.page-index-registration-process__faq-list {
    margin-top: 40px;
    text-align: left;
}

.page-index-registration-process__faq-item {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-index-registration-process__faq-item[open] {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.page-index-registration-process__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    background-color: var(--deep-green-color);
    border-bottom: 1px solid var(--divider-color);
    list-style: none; /* For details/summary */
}

.page-index-registration-process__faq-question::-webkit-details-marker {
    display: none;
}

.page-index-registration-process__faq-qtext {
    flex-grow: 1;
}

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

.page-index-registration-process__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary-color);
    background-color: var(--card-bg-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-index-registration-process__main-title {
        font-size: 2.8rem;
    }
    .page-index-registration-process__section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .page-index-registration-process__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* body handles --header-offset */
    }
    .page-index-registration-process__main-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    .page-index-registration-process__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .page-index-registration-process__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-index-registration-process__section {
        padding: 50px 15px;
    }
    .page-index-registration-process__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .page-index-registration-process__section-description {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }
    .page-index-registration-process__grid-container,
    .page-index-registration-process__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    .page-index-registration-process__card,
    .page-index-registration-process__step-card {
        padding: 25px;
    }
    .page-index-registration-process__card-title,
    .page-index-registration-process__step-title {
        font-size: 1.3rem;
    }
    .page-index-registration-process__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-index-registration-process__faq-answer {
        padding: 10px 20px 15px;
    }

    /* Mobile image and container responsiveness */
    .page-index-registration-process img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-index-registration-process__section,
    .page-index-registration-process__container,
    .page-index-registration-process__card,
    .page-index-registration-process__step-card,
    .page-index-registration-process__hero-image-wrapper,
    .page-index-registration-process__hero-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important;
    }
    /* Specific override for hero image wrapper padding, if needed */
    .page-index-registration-process__hero-image-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
    .page-index-registration-process__hero-content {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .page-index-registration-process__main-title {
        font-size: 1.8rem;
    }
    .page-index-registration-process__section-title {
        font-size: 1.6rem;
    }
    .page-index-registration-process__cta-button {
        font-size: 0.95rem;
        padding: 10px 20px;
    }
}