/* Desktop Heading Corrections */
@media (min-width: 992px) {

    /* Global Heading Corrections */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-weight: 600 !important;
        /* Reduced boldness */
        font-family: 'Manrope', sans-serif !important;
        letter-spacing: 0.5px;
        line-height: 1.3 !important;
    }

    /* Standardized Sizes - Reduced from typical large defaults */
    h1 {
        font-size: 36px !important;
    }

    h2 {
        font-size: 30px !important;
    }

    h3 {
        font-size: 24px !important;
    }

    h4 {
        font-size: 20px !important;
    }

    h5 {
        font-size: 18px !important;
    }

    h6 {
        font-size: 16px !important;
    }

    /* Override specific section titles to ensure consistency */
    .section-title h1,
    .section-title h2,
    .section-title h3 {
        font-size: 30px !important;
        font-weight: 600 !important;
    }

    /* Handle bold tags inside headings */
    h1 b,
    h2 b,
    h3 b,
    h4 b,
    h5 b,
    h6 b,
    h1 strong,
    h2 strong,
    h3 strong,
    h4 strong,
    h5 strong,
    h6 strong {
        font-weight: 600 !important;
    }

    /* Hero text might need to be slightly larger but still reduced */
    .hero-text h1 {
        font-size: 42px !important;
        /* Reduced from potential 50px+ */
        font-weight: 600 !important;
    }

    /* Product card titles */
    .product-content h3 a {
        font-size: 20px !important;
        font-weight: 600 !important;
    }

    /* Video Section Corrections */
    .video-wrapper {
        max-width: 80% !important;
        /* Reduce video size */
        margin: 0 auto !important;
        /* Center the reduced video */
    }

    .video-play-button a {
        width: 60px !important;
        /* Reduced from 80px */
        height: 60px !important;
        /* Reduced from 80px */
        font-size: 20px !important;
        /* Reduced from 24px */
    }

    /* Adjust waves animation size to match new button size */
    .waves {
        width: 100% !important;
        height: 100% !important;
    }

    /* Justify detailed text for better readability on desktop */
    p {
        text-align: justify !important;
    }

    /* Ensure section titles/subtitles that are explicitly centered remain centered if needed, 
       but usually 'detailed text' implies the body paragraphs. 
       If the user wants *all* detailed text, we apply it to p. 
       We might need to exclude specific small text if it looks bad, but starting with p is safe for "detailed text".
    */

    /* Global Market Section - Video Size Reduction (Desktop Only) */
    .video_section .video {
        max-width: 70%;
        margin: 0 auto;
    }

    .video_section .video img {
        width: 100%;
        height: auto;
    }
}

/* Global Market Section - Video Icon Size Reduction (All Views) */
.video_section .icon-play img {
    width: 60px !important;
    height: 60px !important;
    display: block !important;
    margin: 0 auto !important;
}