/* style/resources-13win-platform-features.css */
.page-resources-13win-platform-features {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #000000; /* Body background from shared.css */
}

.page-resources-13win-platform-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-resources-13win-platform-features__dark-bg {
    background-color: #000000;
    color: #ffffff;
}

.page-resources-13win-platform-features__light-bg {
    background-color: #ffffff;
    color: #333333;
}

/* Hero Section */
.page-resources-13win-platform-features__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 600px;
    padding: var(--header-offset, 120px) 20px 60px; /* Use header offset */
    overflow: hidden;
}

.page-resources-13win-platform-features__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.6); /* Overlay for readability */
}

.page-resources-13win-platform-features__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.page-resources-13win-platform-features__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.page-resources-13win-platform-features__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-13win-platform-features__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-resources-13win-platform-features__hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Buttons */
.page-resources-13win-platform-features__btn-primary,
.page-resources-13win-platform-features__btn-secondary {
    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, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-resources-13win-platform-features__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-resources-13win-platform-features__btn-primary:hover {
    background-color: #1a7fb3;
    border-color: #1a7fb3;
}

.page-resources-13win-platform-features__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-resources-13win-platform-features__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-resources-13win-platform-features__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

/* Section Titles and Text Blocks */
.page-resources-13win-platform-features__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: inherit;
}

.page-resources-13win-platform-features__introduction-section .page-resources-13win-platform-features__section-title,
.page-resources-13win-platform-features__technology-section .page-resources-13win-platform-features__section-title,
.page-resources-13win-platform-features__faq-section .page-resources-13win-platform-features__section-title {
    color: #000000;
}

.page-resources-13win-platform-features__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: inherit;
}

/* Features Grid Section */
.page-resources-13win-platform-features__features-grid-section {
    padding: 80px 0;
}

.page-resources-13win-platform-features__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-resources-13win-platform-features__feature-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    color: #ffffff;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-13win-platform-features__feature-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-13win-platform-features__feature-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-resources-13win-platform-features__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #26A9E0;
}

.page-resources-13win-platform-features__card-description {
    font-size: 1em;
    color: #f0f0f0;
}

/* Technology Section */
.page-resources-13win-platform-features__technology-section {
    padding: 80px 0;
}

.page-resources-13win-platform-features__technology-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.page-resources-13win-platform-features__technology-text {
    flex: 1;
}

.page-resources-13win-platform-features__technology-image {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

/* Benefits Section */
.page-resources-13win-platform-features__benefits-section {
    padding: 80px 0;
}

.page-resources-13win-platform-features__benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-resources-13win-platform-features__benefits-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 5px solid #26A9E0;
    border-radius: 5px;
    padding: 25px;
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-13win-platform-features__benefits-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-resources-13win-platform-features__benefits-description {
    font-size: 1em;
    color: #f0f0f0;
}

/* FAQ Section */
.page-resources-13win-platform-features__faq-section {
    padding: 80px 0;
}

.page-resources-13win-platform-features__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-resources-13win-platform-features__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #333333;
}

.page-resources-13win-platform-features__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.page-resources-13win-platform-features__faq-question:hover {
    background-color: #f0f0f0;
}

.page-resources-13win-platform-features__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-resources-13win-platform-features__faq-item.active .page-resources-13win-platform-features__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-13win-platform-features__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-resources-13win-platform-features__faq-item.active .page-resources-13win-platform-features__faq-answer {
    max-height: 1000px !important; /* Sufficiently large value */
    padding: 15px 25px;
}

.page-resources-13win-platform-features__faq-answer p {
    margin: 0;
    font-size: 1em;
    color: #555555;
}

/* Conclusion Section */
.page-resources-13win-platform-features__conclusion-section {
    padding: 80px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-13win-platform-features__hero-title {
        font-size: 3em;
    }

    .page-resources-13win-platform-features__section-title {
        font-size: 2em;
    }

    .page-resources-13win-platform-features__technology-content {
        flex-direction: column;
        text-align: center;
    }

    .page-resources-13win-platform-features__technology-image {
        max-width: 80%;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-resources-13win-platform-features {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-resources-13win-platform-features__hero-section {
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
        min-height: 400px;
    }

    .page-resources-13win-platform-features__hero-title {
        font-size: 2.2em;
    }

    .page-resources-13win-platform-features__hero-description {
        font-size: 1em;
    }

    .page-resources-13win-platform-features__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-13win-platform-features__btn-primary,
    .page-resources-13win-platform-features__btn-secondary {
        max-width: 100% !important;
        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-13win-platform-features__hero-cta-buttons,
    .page-resources-13win-platform-features__cta-bottom {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-resources-13win-platform-features__section-title {
        font-size: 1.8em;
    }

    .page-resources-13win-platform-features__features-grid {
        grid-template-columns: 1fr;
    }

    .page-resources-13win-platform-features__feature-card {
        padding: 20px;
    }

    .page-resources-13win-platform-features__technology-image {
        max-width: 100%;
    }

    .page-resources-13win-platform-features__benefits-list {
        grid-template-columns: 1fr;
    }
    
    .page-resources-13win-platform-features img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-resources-13win-platform-features__section,
    .page-resources-13win-platform-features__card,
    .page-resources-13win-platform-features__container,
    .page-resources-13win-platform-features__technology-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    
    .page-resources-13win-platform-features__video-section {
        padding-top: var(--header-offset, 120px) !important; /* With header offset */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
}

@media (max-width: 480px) {
    .page-resources-13win-platform-features__hero-title {
        font-size: 1.8em;
    }

    .page-resources-13win-platform-features__section-title {
        font-size: 1.5em;
    }

    .page-resources-13win-platform-features__faq-question {
        font-size: 1em;
    }
}