/* style/resources-what-is-da-ga-68.css */

/* General page styling */
.page-resources-what-is-da-ga-68 {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #000000; /* Matching body background */
}

/* Fixed Header Offset - applied to the first content section */
.page-resources-what-is-da-ga-68__hero-section {
    padding-top: var(--header-offset, 120px);
}

.page-resources-what-is-da-ga-68__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-resources-what-is-da-ga-68__hero-section {
    position: relative;
    width: 100%;
    height: 70vh; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #ffffff;
}

.page-resources-what-is-da-ga-68__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-resources-what-is-da-ga-68__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
    z-index: 2;
}

.page-resources-what-is-da-ga-68__hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 20px;
}

.page-resources-what-is-da-ga-68__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.page-resources-what-is-da-ga-68__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* Buttons */
.page-resources-what-is-da-ga-68__btn-primary {
    display: inline-block;
    background-color: #26A9E0; /* Main brand color */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-resources-what-is-da-ga-68__btn-primary:hover {
    background-color: #1e87b7; /* Darker shade for hover */
}

/* Content Area */
.page-resources-what-is-da-ga-68__content-area {
    padding: 60px 0;
    background-color: #ffffff; /* Light background for content readability */
    color: #333333; /* Dark text for light background */
}

.page-resources-what-is-da-ga-68__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand color for titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.page-resources-what-is-da-ga-68__section-title--white {
    color: #ffffff;
}

.page-resources-what-is-da-ga-68__article-content {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 40px;
}

.page-resources-what-is-da-ga-68__article-content p {
    margin-bottom: 20px;
}

.page-resources-what-is-da-ga-68__article-content strong {
    color: #26A9E0; /* Highlight keywords with brand color */
}

.page-resources-what-is-da-ga-68__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-what-is-da-ga-68__list,
.page-resources-what-is-da-ga-68__list-ordered {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    padding-left: 0;
}

.page-resources-what-is-da-ga-68__list li,
.page-resources-what-is-da-ga-68__list-ordered li {
    margin-bottom: 10px;
    color: #333333;
}

/* Video Section */
.page-resources-what-is-da-ga-68__video-section {
    background-color: #000000; /* Dark background for video section */
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.page-resources-what-is-da-ga-68__video-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-resources-what-is-da-ga-68__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
    background-color: #000000; /* Ensure dark background for video wrapper */
}

.page-resources-what-is-da-ga-68__video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    cursor: pointer;
}

.page-resources-what-is-da-ga-68__video-link {
    display: block; /* Make the anchor tag cover the video */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10; /* Ensure link is clickable over video */
}

/* FAQ Section */
.page-resources-what-is-da-ga-68__faq-list {
    max-width: 900px;
    margin: 40px auto;
}

.page-resources-what-is-da-ga-68__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-resources-what-is-da-ga-68__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background-color: #26A9E0; /* Brand color for question background */
    color: #ffffff;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.page-resources-what-is-da-ga-68__faq-question:hover {
    background-color: #1e87b7;
}

.page-resources-what-is-da-ga-68__faq-question h3 {
    margin: 0;
    color: #ffffff; /* Ensure h3 text is white */
}

.page-resources-what-is-da-ga-68__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-resources-what-is-da-ga-68__faq-item.active .page-resources-what-is-da-ga-68__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-what-is-da-ga-68__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    background-color: #ffffff;
    color: #333333;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-resources-what-is-da-ga-68__faq-item.active .page-resources-what-is-da-ga-68__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 25px;
}

.page-resources-what-is-da-ga-68__faq-answer p {
    margin: 0;
    padding-bottom: 15px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-resources-what-is-da-ga-68__hero-section {
        height: 60vh;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    }

    .page-resources-what-is-da-ga-68__hero-title {
        font-size: 2em;
    }

    .page-resources-what-is-da-ga-68__hero-description {
        font-size: 1em;
    }

    .page-resources-what-is-da-ga-68__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    .page-resources-what-is-da-ga-68__article-content {
        font-size: 1em;
        padding: 0 15px; /* Add padding to prevent text touching edges */
    }

    /* Images */
    .page-resources-what-is-da-ga-68 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-resources-what-is-da-ga-68__content-area,
    .page-resources-what-is-da-ga-68__video-section,
    .page-resources-what-is-da-ga-68__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
    }
    
    /* Video */
    .page-resources-what-is-da-ga-68 video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-resources-what-is-da-ga-68__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding-bottom: 56.25% !important; /* Maintain aspect ratio */
    }

    /* Buttons */
    .page-resources-what-is-da-ga-68__btn-primary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px !important;
    }

    .page-resources-what-is-da-ga-68__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-resources-what-is-da-ga-68__faq-answer {
        padding: 0 20px;
    }

    .page-resources-what-is-da-ga-68__faq-item.active .page-resources-what-is-da-ga-68__faq-answer {
        padding: 15px 20px;
    }
}

/* Color Contrast Enforcement - applied based on body background (#000000 - dark) */
/* Main content area has light background, so dark text is used */
.page-resources-what-is-da-ga-68__content-area {
    background: #ffffff; /* Explicitly white background */
    color: #333333; /* Dark text for contrast */
}

/* Elements within content area that might inherit or need specific contrast */
.page-resources-what-is-da-ga-68__content-area p,
.page-resources-what-is-da-ga-68__content-area li {
    color: #333333;
}

.page-resources-what-is-da-ga-68__faq-answer {
    background-color: #ffffff;
    color: #333333;
}

/* Dark background sections for contrast */
.page-resources-what-is-da-ga-68__dark-bg {
    background-color: #000000; /* Use body background for dark sections */
    color: #ffffff;
}

/* Light background sections for contrast */
.page-resources-what-is-da-ga-68__light-bg {
    background-color: #ffffff;
    color: #333333;
}

/* Ensure no image filters */
.page-resources-what-is-da-ga-68 img {
    filter: none !important;
}