/* style/resources-sodo66-registration-deposit-guide.css */

/* Base Styles for the page content */
.page-resources-sodo66-registration-deposit-guide {
    color: #ffffff; /* Default text color for dark body background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: transparent; /* Inherit from body var(--dark-bg-1) */
}

/* Header offset for the main content or hero section */
.page-resources-sodo66-registration-deposit-guide__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

/* General Section Styling */
.page-resources-sodo66-registration-deposit-guide__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-resources-sodo66-registration-deposit-guide__section--light {
    background-color: #ffffff;
    color: #333333;
}

.page-resources-sodo66-registration-deposit-guide__section--dark {
    background-color: #017439; /* Brand primary color */
    color: #ffffff;
}

/* Headings */
.page-resources-sodo66-registration-deposit-guide__heading-primary {
    font-size: 3.5em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-resources-sodo66-registration-deposit-guide__heading-secondary {
    font-size: 2.5em;
    color: #017439; /* Brand primary color */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-resources-sodo66-registration-deposit-guide__heading-tertiary {
    font-size: 1.8em;
    color: #017439;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Paragraphs */
.page-resources-sodo66-registration-deposit-guide__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
}

/* Links within content */
.page-resources-sodo66-registration-deposit-guide__link {
    color: #FFFF00; /* Yellow for links on dark background */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-resources-sodo66-registration-deposit-guide__link:hover {
    color: #ffcc00;
}

.page-resources-sodo66-registration-deposit-guide__section--light .page-resources-sodo66-registration-deposit-guide__link {
    color: #017439; /* Brand primary for links on light background */
}

.page-resources-sodo66-registration-deposit-guide__section--light .page-resources-sodo66-registration-deposit-guide__link:hover {
    color: #005a2b;
}

/* Hero Section */
.page-resources-sodo66-registration-deposit-guide__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #017439; /* Fallback for image loading */
}

.page-resources-sodo66-registration-deposit-guide__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-resources-sodo66-registration-deposit-guide__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.page-resources-sodo66-registration-deposit-guide__hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    color: #ffffff;
}

.page-resources-sodo66-registration-deposit-guide__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
}

.page-resources-sodo66-registration-deposit-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* Buttons */
.page-resources-sodo66-registration-deposit-guide__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box; /* Crucial for max-width on mobile */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Ensure long words break */
}

.page-resources-sodo66-registration-deposit-guide__btn-primary {
    background-color: #017439; /* Brand primary color */
    color: #ffffff;
    border: 2px solid #017439;
}

.page-resources-sodo66-registration-deposit-guide__btn-primary:hover {
    background-color: #005a2b;
    transform: translateY(-2px);
}

.page-resources-sodo66-registration-deposit-guide__btn-secondary {
    background-color: #ffffff;
    color: #017439;
    border: 2px solid #017439;
}

.page-resources-sodo66-registration-deposit-guide__btn-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Specific colors for Register/Login buttons, ensuring WCAG AA contrast */
.page-resources-sodo66-registration-deposit-guide__btn-register,
.page-resources-sodo66-registration-deposit-guide__btn-login {
    background-color: #C30808; /* Custom red for register/login */
    color: #000000; /* Black text for WCAG AA contrast on #C30808 (4.7:1) */
    border: 2px solid #C30808;
}

.page-resources-sodo66-registration-deposit-guide__btn-register:hover,
.page-resources-sodo66-registration-deposit-guide__btn-login:hover {
    background-color: #9c0606;
    transform: translateY(-2px);
}

/* Image styling */
.page-resources-sodo66-registration-deposit-guide__image-container {
    margin: 40px auto;
    text-align: center;
}

.page-resources-sodo66-registration-deposit-guide__image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* List styling */
.page-resources-sodo66-registration-deposit-guide__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-resources-sodo66-registration-deposit-guide__list-item {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white on dark background */
    margin-bottom: 10px;
    padding: 15px;
    border-left: 5px solid #017439;
    border-radius: 5px;
    font-size: 1.1em;
    color: #ffffff;
}

.page-resources-sodo66-registration-deposit-guide__section--light .page-resources-sodo66-registration-deposit-guide__list-item {
    background-color: #f9f9f9;
    color: #333333;
}

.page-resources-sodo66-registration-deposit-guide__list-item strong {
    color: #FFFF00; /* Yellow for emphasis on dark list items */
}

.page-resources-sodo66-registration-deposit-guide__section--light .page-resources-sodo66-registration-deposit-guide__list-item strong {
    color: #017439; /* Brand primary for emphasis on light list items */
}

/* Card styling */
.page-resources-sodo66-registration-deposit-guide__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-sodo66-registration-deposit-guide__card {
    background-color: #ffffff;
    color: #333333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-resources-sodo66-registration-deposit-guide__card:hover {
    transform: translateY(-10px);
}

.page-resources-sodo66-registration-deposit-guide__card-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #017439;
}

.page-resources-sodo66-registration-deposit-guide__card-description {
    font-size: 1em;
    color: #555555;
}

/* Video Section */
.page-resources-sodo66-registration-deposit-guide__video-section {
    position: relative;
    padding: 60px 20px;
    background-color: #017439; /* Brand primary color */
    color: #ffffff;
    text-align: center;
    box-sizing: border-box;
}

.page-resources-sodo66-registration-deposit-guide__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 800px; /* Max width for the video */
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer; /* Indicate video is clickable */
}

.page-resources-sodo66-registration-deposit-guide__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* FAQ Section */
.page-resources-sodo66-registration-deposit-guide__faq-section {
    background-color: #f8f8f8; /* Light background for FAQ */
    color: #333333;
}

.page-resources-sodo66-registration-deposit-guide__faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-resources-sodo66-registration-deposit-guide__faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffffff;
    overflow: hidden;
}

.page-resources-sodo66-registration-deposit-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: #f0f0f0;
    transition: background-color 0.3s ease;
    color: #333333;
}

.page-resources-sodo66-registration-deposit-guide__faq-question:hover {
    background-color: #e5e5e5;
}

.page-resources-sodo66-registration-deposit-guide__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #017439;
}

.page-resources-sodo66-registration-deposit-guide__faq-item.active .page-resources-sodo66-registration-deposit-guide__faq-toggle {
    transform: rotate(45deg); /* Change + to X or - */
}

.page-resources-sodo66-registration-deposit-guide__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: #555555;
}

.page-resources-sodo66-registration-deposit-guide__faq-item.active .page-resources-sodo66-registration-deposit-guide__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 20px !important;
}

/* Footer (shared, but copyright content is page-specific) */
.page-resources-sodo66-registration-deposit-guide__copyright {
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    color: #cccccc; /* Light gray for footer text on dark background */
    background-color: #1a1a1a; /* Darker background for footer */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-sodo66-registration-deposit-guide__heading-primary {
        font-size: 3em;
    }
    .page-resources-sodo66-registration-deposit-guide__heading-secondary {
        font-size: 2em;
    }
    .page-resources-sodo66-registration-deposit-guide__hero-section {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .page-resources-sodo66-registration-deposit-guide__hero-section {
        height: 400px;
    }
    .page-resources-sodo66-registration-deposit-guide__heading-primary {
        font-size: 2.2em;
    }
    .page-resources-sodo66-registration-deposit-guide__hero-description {
        font-size: 1.1em;
    }
    .page-resources-sodo66-registration-deposit-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-sodo66-registration-deposit-guide__btn {
        width: 100%;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-resources-sodo66-registration-deposit-guide__section,
    .page-resources-sodo66-registration-deposit-guide__card-grid,
    .page-resources-sodo66-registration-deposit-guide__video-section,
    .page-resources-sodo66-registration-deposit-guide__faq-section,
    .page-resources-sodo66-registration-deposit-guide__faq-container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-resources-sodo66-registration-deposit-guide__image,
    .page-resources-sodo66-registration-deposit-guide__hero-image,
    .page-resources-sodo66-registration-deposit-guide__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-resources-sodo66-registration-deposit-guide__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding-bottom: 56.25% !important; /* Ensure aspect ratio is maintained */
    }

    /* Important: Video section padding-top for mobile */
    .page-resources-sodo66-registration-deposit-guide__video-section {
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-resources-sodo66-registration-deposit-guide__heading-secondary {
        font-size: 1.8em;
    }
    .page-resources-sodo66-registration-deposit-guide__heading-tertiary {
        font-size: 1.4em;
    }
    .page-resources-sodo66-registration-deposit-guide__paragraph,
    .page-resources-sodo66-registration-deposit-guide__list-item,
    .page-resources-sodo66-registration-deposit-guide__card-description {
        font-size: 1em;
    }
    .page-resources-sodo66-registration-deposit-guide__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-resources-sodo66-registration-deposit-guide__faq-answer {
        padding: 0 15px;
    }
    .page-resources-sodo66-registration-deposit-guide__faq-item.active .page-resources-sodo66-registration-deposit-guide__faq-answer {
        padding: 15px !important;
    }
}