    .section-main {
        min-height: 70vh;
    }
    
    .video-bg {
        position: absolute;
        height: 70vh;
        object-fit: fill;
    }
    
    .sound-toggle-btn {
        position: absolute;
        top: 30px;
        left: 30px;
        z-index: 10;
        background: rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: background 0.3s ease;
    }
    
    .sound-toggle-btn:hover {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .csr-info {
        padding: 40px 10px;
        text-align: center;
        /* 1. Apply the trapezoidal shape */
        clip-path: polygon(0% 9.68%, /* (0, 47.64) */
        100% 0%, /* (1920, 0) */
        100% 99.9%, /* (1920, 491.5) */
        0% 93.4%
        /* (0, 459.5) */
        );
        /* 2. Apply the vertical linear gradient */
        /* The SVG gradient goes from #F8FDFF (0%) to #BFE7F1 (100%) */
        background: linear-gradient(to bottom, #F8FDFF, #BFE7F1);
        /* Set the height for the element */
        height: 440px;
        width: 100%;
    }
    
    .csr-info h1 {
        margin-bottom: 40px;
        color: #000;
        text-align: center;
        font-family: Montserrat;
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    
    .csr-info p {
        margin-bottom: 30px;
        color: #000;
        text-align: center;
        font-family: Montserrat;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }
    
    .csr-info2 {
        padding: 70px 20px;
        text-align: center;
        /* 1. Apply the vertical linear gradient */
        background: linear-gradient(to bottom, #F8FDFF, #BFE7F1);
        /* 2. Apply the mirrored trapezoidal shape */
        clip-path: polygon(100% 9.69%, /* Top-Right */
        0% 0%, /* Top-Left */
        0% 100%, /* Bottom-Left */
        100% 93.49%
        /* Bottom-Right */
        );
        /* Set the dimensions for the element */
        width: 100%;
        height: 400px;
    }
    
    .csr-info2 h1 {
        margin-bottom: 50px;
        color: #000;
        text-align: center;
        font-family: Montserrat;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    
    .csr-info2 p {
        margin-bottom: 30px;
        color: #000;
        text-align: center;
        font-family: Montserrat;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }
    
    .csr-info3 {
        padding: 80px 180px 0 180px;
        text-align: center;
    }
    
    .csr-container {
        padding: 40px 15px;
        margin-bottom: 50px;
        background-color: #F8FDFF;
    }
    
    .csr-info3 h1 {
        margin-bottom: 50px;
        color: #000;
        text-align: center;
        font-family: Montserrat;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    
    .csr-title-page {
        color: #000;
        font-family: Montserrat;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin-bottom: 40px;
    }
    
    .partner-img-comp {
        display: flex;
        align-items: center;
        justify-content: center;
        object-fit: cover;
        gap: 20px;
    }
    
    .img-yayasan {
        width: 80px;
        height: 80px;
        object-fit: cover;
    }
    
    .gallery-csr {
        padding: 10px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        margin-bottom: 120px;
    }
    
    .gallery-csr .row {
        scroll-behavior: smooth;
    }
    
    .gallery-csr .row::-webkit-scrollbar {
        height: 8px;
    }
    
    .gallery-csr .row::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .gallery-csr .row::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 10px;
    }
    
    .img-gallery-wrapper {
        position: relative;
        width: 100%;
        height: 240px;
        border-radius: 15px;
        overflow: hidden;
        cursor: pointer;
        transition: transform 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .img-gallery-wrapper:hover {
        transform: translateY(-5px);
    }
    
    .img-csr {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .gallery-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
        padding: 20px 15px;
        color: white;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }
    
    .img-gallery-wrapper:hover .gallery-overlay {
        transform: translateY(0);
    }
    
    .gallery-overlay h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 5px;
    }
    
    .gallery-overlay p {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .btn-read-more {
        background: #00BCD4;
        color: white;
        border: none;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
    }
    
    .btn-read-more:hover {
        background: #00ACC1;
    }
    /* Modal Styles */
    
    .modal-content {
        border-radius: 15px;
        border: none;
        padding: 20px;
    }
    
    .modal-header {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .modal-title {
        font-weight: 700;
        color: #333;
    }
    
    .req-csr-form label,
    .upload-csr-title {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
        color: #333;
        display: block;
    }
    
    .req-csr-form label::after {
        content: " *";
        color: #dc3545;
    }
    
    .req-csr-form {
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
    }
    
    .req-csr-input,
    .req-csr-select,
    .req-csr-area {
        border-radius: 8px;
        background: #F5F5F5;
        padding: 10px 15px;
        border: 1px solid transparent;
        width: 100%;
        font-size: 14px;
        color: #000;
        transition: all 0.3s;
    }
    
    .req-csr-input:focus,
    .req-csr-select:focus,
    .req-csr-area:focus {
        outline: none;
        background: #fff;
        border-color: #ced4da;
        box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
    }
    
    .req-csr-area {
        min-height: 120px;
        resize: vertical;
    }
    /* Footer Checkboxes & Button */
    
    .form-check-label {
        font-size: 13px;
        color: #111;
    }
    
    .form-check-input:checked {
        background-color: #333;
        border-color: #333;
    }
    
    .btn-submit-request {
        background-color: #00bad1;
        /* Warna Cyan/Biru Wayang */
        border: none;
        color: white;
        padding: 7px;
        border-radius: 8px;
        font-weight: 600;
        width: 30%;
        margin-top: 20px;
    }
    
    .btn-submit-request:hover {
        background-color: #00a0b5;
        color: white;
    }
    
    .btn-submit-csr {
        display: flex;
        justify-content: center;
    }
    
    .gallery-footer-csr {
        padding: 0 100px;
    }
    /* --- SHARED SETTINGS FOR BOTH TABLET & MOBILE --- */
    /* This activates the horizontal scroll for anything smaller than a laptop */
    
    @media (max-width: 768px) {
        .gallery-csr .row {
            display: flex !important;
            flex-wrap: nowrap !important;
            /* Forces items into one long line */
            overflow-x: auto !important;
            /* Enables horizontal scrolling */
            scroll-snap-type: x mandatory;
            /* Makes it snap */
            -webkit-overflow-scrolling: touch;
            padding-bottom: 20px;
            justify-content: flex-start !important;
        }
        /* Reset width of the card wrapper to fit the column */
        .img-gallery-wrapper {
            width: 100% !important;
        }
    }
    /* --- TABLET VIEW (Under 768px) --- */
    /* Show 2 Images */
    
    @media (max-width: 768px) {
        .gallery-csr .col {
            flex: 0 0 50% !important;
            /* 50% means 2 items fit in the screen */
            max-width: 50% !important;
            scroll-snap-align: start;
            /* Snaps to the left edge */
            padding: 0 8px;
            /* Small gap between images */
        }
    }
    /* --- MOBILE VIEW (Under 425px) --- */
    /* Show 1 Image */
    
    @media (max-width: 426px) {
        .gallery-csr .col {
            flex: 0 0 100% !important;
            /* 100% means only 1 item fits */
            max-width: 100% !important;
            scroll-snap-align: center;
            /* Snaps to the center */
            padding: 0 10px;
        }
    }
    
    @media (min-width: 1024px) {
        .csr-info {
            padding: 40px 40px;
        }
        .csr-container {
            padding: 40px 40px;
        }
        .img-gallery-wrapper {
            width: 240px;
            height: 240px;
        }
    }
    
    @media (min-width: 1440px) {
        .csr-info {
            padding: 80px 180px;
        }
        .csr-info h1 {
            font-size: 32px;
        }
        .csr-info p {
            font-size: 20px;
        }
        .csr-container {
            padding: 40px 100px;
        }
        .csr-title-page {
            font-size: 32px;
        }
        .csr-info2 {
            padding: 80px 180px;
        }
        .partner-img-comp {
            gap: 50px;
        }
        .img-yayasan {
            width: 100px;
            height: 100px;
        }
        .img-gallery-wrapper {
            width: 350px;
            height: 240px;
        }
    }