    /* ============================= */
        /* GALLERY SECTION */
        /* ============================= */

        .gallery-sec {
            /*padding: 80px 0;*/
            /*background: #fff;*/
        }

        /* ============================= */
        /* MAIN ACCORDION */
        /* ============================= */

        .accordion-item {
            background: #fff;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
        }

        .accordion-btn {
            width: 100%;
            padding: 15px;
            font-size: 18px;
            font-weight: 600;
            background: #fffdf2;
            border: 1.5px solid #f0b98b;
            cursor: pointer;
            display: flex;
            align-items: center;
            border-radius: 6px;
            position: relative;
        }

        /* Bootstrap Chevron */
        .accordion-btn::after {
            content: "";
            width: 18px;
            height: 18px;
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%) rotate(0deg);
            transition: transform 0.3s ease;
            background-repeat: no-repeat;
            background-size: 18px;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        }

        .accordion-btn.active::after {
            transform: translateY(-50%) rotate(180deg);
        }

        /* CONTENT */

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        /* ============================= */
        /* SUB ACCORDION */
        /* ============================= */

        .sub-accordion-item {
            margin-top: 10px;
            border-radius: 6px;
            overflow: hidden;
            border: 1px solid #eee;
        }

        .sub-accordion-btn {
            width: 100%;
            padding: 12px;
            font-size: 16px;
            font-weight: 600;
            background: #f0b98b;
            color: #fff;
            border: none;
            cursor: pointer;
            position: relative;
        }

        /* Sub Chevron */
        .sub-accordion-btn::after {
            content: "";
            width: 16px;
            height: 16px;
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%) rotate(0deg);
            transition: transform 0.3s ease;
            background-repeat: no-repeat;
            background-size: 16px;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        }

        .sub-accordion-btn.active::after {
            transform: translateY(-50%) rotate(180deg);
        }

        .sub-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        /* ============================= */
        /* GRID */
        /* ============================= */

        .staff-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            padding: 15px;
        }

        .staff-card {
            height: 220px;
            overflow: hidden;
            border-radius: 6px;
            background: #f8f4e8;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
        }

        .staff-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.4s;
        }

        .staff-card:hover img {
            transform: scale(1.05);
        }

        /* RESPONSIVE */

        @media(max-width:992px) {
            .staff-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(max-width:576px) {
            .staff-grid {
                grid-template-columns: 1fr;
            }
        }