.page-strategy-guides {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-strategy-guides__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 500px;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow: hidden; /* Prevent content overflow */
}

.page-strategy-guides__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.3; /* Subtle background image */
}

.page-strategy-guides__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
}

.page-strategy-guides__main-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #26A9E0; /* Brand color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-strategy-guides__intro-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-strategy-guides__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-strategy-guides__btn-primary,
.page-strategy-guides__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-strategy-guides__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-strategy-guides__btn-primary:hover {
    background-color: #1e87c0;
    border-color: #1e87c0;
}

.page-strategy-guides__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-strategy-guides__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-strategy-guides__video-section {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.page-strategy-guides__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 800px; /* Max width for video */
    margin: 30px auto;
    background-color: #000;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    box-sizing: border-box; /* Crucial for responsiveness */
    width: 100%; /* Ensure it takes full width of parent */
}

.page-strategy-guides__video-wrapper .page-strategy-guides__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.page-strategy-guides__video-link {
    display: block; /* Make the whole area clickable */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10; /* Ensure link is above video */
    cursor: pointer;
}
.page-strategy-guides__video-link video {
    pointer-events: none; /* Allow click to pass through to the link */
}

.page-strategy-guides__video-description {
    max-width: 800px;
    margin: 0 auto 20px auto;
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-strategy-guides__content-section,
.page-strategy-guides__info-section,
.page-strategy-guides__final-cta {
    padding: 60px 20px;
}

.page-strategy-guides__light-bg {
    background-color: #ffffff;
    color: #333333; /* Dark text for light background */
}

.page-strategy-guides__dark-bg {
    background-color: #26A9E0;
    color: #ffffff; /* Light text for dark background */
}

.page-strategy-guides__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Consistent padding */
    box-sizing: border-box;
}

.page-strategy-guides__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: #26A9E0; /* Brand color for section titles */
}

.page-strategy-guides__sub-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #26A9E0;
}

.page-strategy-guides__paragraph {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.7;
}

.page-strategy-guides__content-image {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-strategy-guides__image-right {
    float: right;
    margin-left: 30px;
    margin-bottom: 15px;
    max-width: 400px; /* Specific max-width for floated image */
}

/* Clearfix for floated images */
.page-strategy-guides__content-section::after {
    content: "";
    display: table;
    clear: both;
}

/* FAQ Section */
.page-strategy-guides__faq-section {
    background-color: #ffffff;
    color: #333333;
}

.page-strategy-guides__faq-list {
    margin-top: 40px;
}

.page-strategy-guides__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-strategy-guides__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: #f0f0f0;
    font-weight: bold;
    color: #333333;
    transition: background-color 0.3s ease;
}

.page-strategy-guides__faq-question:hover {
    background-color: #e6e6e6;
}

.page-strategy-guides__faq-title {
    margin: 0;
    font-size: 1.2em;
    color: #26A9E0; /* Brand color for FAQ titles */
}

.page-strategy-guides__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-strategy-guides__faq-item.active .page-strategy-guides__faq-toggle {
    transform: rotate(45deg); /* Change to minus sign visually */
}

.page-strategy-guides__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #555555;
}

.page-strategy-guides__faq-item.active .page-strategy-guides__faq-answer {
    max-height: 1000px !important; /* Ensure it expands fully */
    padding: 20px !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-strategy-guides {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-strategy-guides__hero-section {
        min-height: 400px;
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-strategy-guides__main-title {
        font-size: 2em;
    }

    .page-strategy-guides__intro-description {
        font-size: 1em;
    }

    .page-strategy-guides__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .page-strategy-guides__btn-primary,
    .page-strategy-guides__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-strategy-guides__video-section,
    .page-strategy-guides__content-section,
    .page-strategy-guides__info-section,
    .page-strategy-guides__final-cta {
        padding: 40px 15px;
    }

    .page-strategy-guides__section-title {
        font-size: 2em;
    }

    .page-strategy-guides__sub-title {
        font-size: 1.5em;
    }

    .page-strategy-guides__paragraph {
        font-size: 1em;
    }

    .page-strategy-guides__content-image {
        margin: 20px auto;
    }

    .page-strategy-guides__image-right {
        float: none;
        margin: 20px auto;
    }

    /* Video container mobile specific */
    .page-strategy-guides__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
        margin-left: auto;
        margin-right: auto;
        overflow: hidden !important;
    }

    .page-strategy-guides__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-strategy-guides__container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Ensure all images inside content sections are responsive */
    .page-strategy-guides img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
}

/* Ensure content area images are at least 200px */
.page-strategy-guides__content-section img,
.page-strategy-guides__info-section img {
    min-width: 200px;
    min-height: 200px;
}