.about-banner {
            position: relative;
            width: 100%;
            height: 170px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.6;
        }

        .about-banner h1 {
            position: absolute;
            font-size: 50px;
            color: #ffffff;
            font-weight: bold;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 8px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }

        .about-container {
            display: flex;
            padding: 40px;
            gap: 40px;
        }

        .about-main {
            flex: 3;
        }

        .about-main h2 {
            font-family: 'Poppins', sans-serif;
            font-weight: bold;
            margin-bottom: 20px;
            text-align: center;
        }

        .about-main p {
            margin-bottom: 20px;
            line-height: 1.6;
            text-align: justify;
        }

        .about-sidebar {
            flex: 1;
            background: #f2f2f2;
            padding: 20px;
            max-width: 200px;
            height: fit-content;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .about-sidebar h3 {
            font-size: 18px;
            font-family: 'Poppins', sans-serif;
            font-weight: bold;
            margin-bottom: 15px;
            text-align: center;
        }

        .about-sidebar ul {
            list-style: none;
            padding: 0;
        }

        .about-sidebar li {
            margin: 15px 0;
            text-align: center;
        }

        .about-sidebar a {
            text-decoration: none;
            color: black;
            font-weight: bold;
        }

        .about-sidebar a:hover {
            color: #a08e73;
        }

        .about-sidebar a.active-link {
            color: #a08e73;
            font-weight: bold;
            text-decoration: underline;
        }

        .staff-slider-container {
            position: relative;
            overflow: hidden;
            max-width: 100%;
            margin: auto;
            padding: 20px 0;
        }

        .staff-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .staff-card {
            flex: 0 0 33.3333%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 10px;
            text-align: center;
        }

        .staff-card img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 50%;
            border: 3px solid #a08e73;
            margin-bottom: 10px;
            background: #ddd;
        }

        .staff-card h4 {
            margin: 10px 0 5px;
            font-family: 'Lora', serif;
        }

        .staff-card p {
            color: #777;
            font-size: 14px;
        }

        .staff-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 30px;
            background: rgba(255,255,255,0.8);
            border: none;
            cursor: pointer;
            padding: 5px 10px;
            z-index: 2;
            border-radius: 50%;
        }

        .prev {
            left: 10px;
        }

        .next {
            right: 10px;
        }

        .staff-dots {
            text-align: center;
            margin-top: 15px;
        }

        .staff-dots span {
            display: inline-block;
            width: 10px;
            height: 10px;
            background-color: #ccc;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
        }

        .staff-dots .active {
            background-color: #a08e73;
        }

        @media (max-width: 768px) {
            .about-container {
                flex-direction: column;
                padding: 20px;
            }
            
            .about-sidebar {
                max-width: 100%;
            }

            .about-banner h1 {
                font-size: 30px;
                letter-spacing: 4px;
            }

            /* Mobile staff card adjustments */
            .staff-card {
                flex: 0 0 100%; /* Show one card per slide on mobile */
                padding: 20px;
            }

            .staff-card img {
                width: 100px;
                height: 100px;
            }

            .staff-card h4 {
                font-size: 18px;
            }

            .staff-card p {
                font-size: 13px;
            }

            .staff-nav {
                font-size: 24px;
                padding: 8px 12px;
            }

            .prev {
                left: 5px;
            }

            .next {
                right: 5px;
            }
        }