        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            
            
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background-color: #006747;
            color: white;
            padding: 10px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 500;
        }
        
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 0;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        /* This is the key part - controlling logo size */
        .logo {
            /* Adjust width as needed - height will adjust proportionally */
            width: 90px;
            height: auto;
            transition: all 0.3s ease;
        }
        
        /* Logo hover effect */
        .logo:hover {
            transform: scale(1.05);
            opacity: 0.9;
        }
        
        /* Logo font-size */
        .logo {
            font-size: 28px;
            font-weight: bold;
        }
        
        .logo span {
            color: #ffc72c;
        }
        
        .header-links a {
            color: white;
            text-decoration: none;
            margin-left: 20px;
            font-size: 14px;
        }
        
        .header-links a:hover {
            text-decoration: underline;
        }
        
        /* Navigation - FLOATING/STICKY MENU */
        nav {
            background-color: #005437;
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            
            
            
            
        }
        
        .nav-menu li {
            position: relative;
        }
        .navbar.sticky {
              position: fixed;
              top: 0;
              width: 100%;
              z-index: 1000;
              background: #fff; /* adjust to your theme */
        }
        
        .nav-menu li a {
            color: white;
            text-decoration: none;
            padding: 10px 15px;
            display: block;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .nav-menu li a:hover {
            background-color: #00422a;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            width: 200px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 100;
            list-style: none; /* Removes bullets from dropdowns too */
            padding-left: 0; /* Removes default padding */
        }
        
        .nav-menu li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
        }
        
        .dropdown-menu li a {
            color: #333;
            padding: 10px 15px;
            border-bottom: 1px solid #eee;
        }
        
        .dropdown-menu li a:hover {
            background-color: #f5f5f5;
            color: #006747;
        }
        
        /* Hero Carousel Section */
        .hero-carousel {
            position: relative;
            width: 100vw;
            /* height: 700px; */
            height: 85vh; /* CHANGED: This makes the carousel's height fill the screen */
            overflow: hidden;
            background-color: #000; /* Optional: Adds a black background for letterboxing */

        }


        
        .carousel {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.8s ease-in-out;
        }
        
        .carousel-item {
            min-width: 100%;
            height: 100%;
            position: relative;
        }
        
        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }
 
        .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            padding: 80px 20px 40px;
            color: white;
            text-align: center;
        }
        
        .caption {
            font-size: 1.8rem;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }
        
        .description {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            backdrop-filter: blur(5px);
        }
        
        .carousel-control:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-control.prev {
            left: 30px;
        }
        
        .carousel-control.next {
            right: 30px;
        }
        
        .carousel-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        }
        
        .indicator {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .indicator.active {
            background: white;
            transform: scale(1.2);
        }
        
        .controls-container {
            position: absolute;
            bottom: 30px;
            right: 30px;
            display: flex;
            gap: 15px;
            z-index: 10;
        }
        
        .control-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .control-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }
        
        .progress-bar {
            position: absolute;
            top: 0;
            left: 0;
            height: 5px;
            background: rgba(255, 255, 255, 0.8);
            width: 0%;
            z-index: 10;
            transition: width 0.1s linear;
        }
        
        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 5;
            width: 80%;
        }
        
        .hero-content h1 {
            font-size: 48px;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero-content p {
            font-size: 20px;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
        }
        
        .btn {
            display: inline-block;
            background-color: #ffc72c;
            color: #333;
            padding: 12px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .btn:hover {
            background-color: #e6b328;
            transform: translateY(-2px);
        }
        
        /* Search Box */
        .search-box {
            background-color: white;
            padding: 20px;
            border-radius: 4px;
            max-width: 800px;
            margin: -30px auto 0;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 10;
        }
        
        .search-box h3 {
            color: #006747;
            margin-bottom: 15px;
        }
        
        .search-form {
            display: flex;
        }
        
        .search-form input {
            flex: 1;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px 0 0 4px;
            font-size: 16px;
        }
        
        .search-form button {
            background-color: #006747;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .search-form button:hover {
            background-color: #00422a;
        }
        
        /* Sections */
        .section {
            padding: 30px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 10px;
        }
        
        .section-title h2 {
            font-size: 32px;
            color: #006747;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #ffc72c;
        }
        
        /* Destinations Section */
        .destinations {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .destination-card {
            background-color: white;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }
        
        .destination-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .destination-img {
            height: 180px;
            overflow: hidden;
        }
        
        .destination-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s;
        }
        
        .destination-card:hover .destination-img img {
            transform: scale(1.1);
        }
        
        .destination-info {
            padding: 20px;
        }
        
        .destination-info h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #006747;
        }
        
        .destination-info p {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .read-more {
            color: #006747;
            font-weight: bold;
            text-decoration: none;
            font-size: 14px;
            display: inline-block;
        }
        
        .read-more:hover {
            text-decoration: underline;
        }
        
        /* About Us Section */
        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-items: center;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .about-text {
            flex: 2;
            min-width: 300px;
        }
        
        .about-text p {
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .about-text ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        
        .about-text li {
            margin-bottom: 8px;
        }
        
        /* Mission & Vision Section */
        .mission-vision {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .mission, .vision {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .mission-vision h3 {
            color: #006747;
            margin-bottom: 15px;
            font-size: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .mission-vision h3 i {
            color: #ffc72c;
        }
        
        .mission-vision p {
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        /* Objectives Section */
        .objectives {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .objective-card {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
        }
        
        .objective-icon {
            font-size: 40px;
            color: #006747;
            margin-bottom: 15px;
        }
        
        .objective-card h3 {
            color: #006747;
            margin-bottom: 15px;
        }
        
        .objective-card p {
            color: #666;
            line-height: 1.5;
        }
        
        /* Experiences Section */
        .experiences {
            background-color: #f0f8f5;
        }
        
        .experience-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .tab-btn {
            padding: 10px 20px;
            background-color: white;
            border: none;
            margin: 0 5px 10px;
            cursor: pointer;
            border-radius: 4px;
            font-weight: bold;
            color: #666;
            transition: all 0.3s;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .tab-btn.active {
            background-color: #006747;
            color: white;
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }
        
        /* NEW: Committee Carousel Styles */
        .committee-carousel-container {
            position: relative;
            margin: 0 auto;
            max-width: 1200px;
            overflow: hidden;
            padding: 20px 0;
        }
        
        .committee-carousel {
            display: flex;
            width: fit-content; /* New line */
            transition: transform 0.5s ease;
            padding: 10px 0;
        }
        
        .committee-member {
            flex: 0 0 280px; /* Fixed width for all cards */
            margin: 0 15px;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 420px; /* Fixed height for consistency */
            
            /* disabled the below lines 
            margin: 0 10px;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease; */
            
        }
        .committee-member img {
            width: 100%;
            height: 250px; /* You can adjust this height to your liking */
            object-fit: cover; /* This is the key property */
        }
        .committee-member:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .member-img {
            /*
            width: 100%;
            height: 180px;
            overflow: hidden; 
            width: 100%; */
            height: 280px; /* Increased height for portrait photos */
            width: 100%; /* Increased height for portrait photos */
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .member-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .committee-member:hover .member-img img {
            transform: scale(1.05);
        }
        
        .member-info {
            /*padding: 15px;*/
            text-align: center;
            padding: 20px;
            flex: 1; /* Allows this section to grow and fill remaining space */
            display: flex;
            flex-direction: column;
        }
        
        .member-info h3 {
            color: #006747;
            margin-bottom: 8px;
            font-size: 18px;
            line-height: 1.3;
        }
        
        .member-info p {
            color: #666;
            font-size: 14px;
            margin-bottom: 10px;
        }
        .member-info p.description {
            color: #666;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 15px;
            flex: 1; /* Pushes the link to the bottom */
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3; /* Limit to 3 lines */
            -webkit-box-orient: vertical;
        }
        .member-info .read-more {
            color: #006747;
            font-weight: bold;
            text-decoration: none;
            font-size: 14px;
            margin-top: auto; /* Pushes link to bottom of card */
            align-self: flex-start; /* Align link to left */
        }
        
        
        .member-info .role {
            background-color: #ffc72c;
            color: #333;
            /*background: rgba(0, 103, 71, 0.1);
            color: #ffc72c;*/
            font-weight: 600;
            
            display: inline-block;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 13px;
            margin-bottom: 15px;
        }
        
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 103, 71, 0.8);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 20;
            transition: all 0.3s ease;
            border: none;
        }
        
        .carousel-nav:hover {
            background: #00422a;
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-nav.prev {
            left: -25px;
        }
        
        .carousel-nav.next {
            right: -25px;
        }
        
        .carousel-dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 10px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dot.active {
            background: #006747;
            transform: scale(1.2);
        }
        
        /* Newsletter */
        .newsletter {
            background-color: #006747;
            color: white;
            padding: 40px 0;
            text-align: center;
        }
        
        .newsletter h3 {
            font-size: 24px;
            margin-bottom: 15px;
        }
        
        .newsletter p {
            margin-bottom: 20px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 16px;
        }
        
        .newsletter-form button {
            background-color: #ffc72c;
            color: #333;
            border: none;
            padding: 0 20px;
            font-weight: bold;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .newsletter-form button:hover {
            background-color: #e6b328;
        }
        
        /* Footer */
        footer {
            background-color: #222;
            color: #ddd;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: white;
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: #ffc72c;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: #ffc72c;
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #333;
            color: white;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: #ffc72c;
            color: #333;
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 14px;
        }
        
        /* Sponsor Scroll container styles */
        /* The container that creates the "window" for the scroller */

        .scroller-container {
            
            width: 100%;
            /*max-width: 1500px;*/
            align-items: center;
            overflow: hidden; /* Crucial: This hides the images that are off-screen */
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }

        /* The gallery that holds the images and moves */
        .image-gallery {
            display: flex; /* Lines up images in a row */
            width: max-content; /* Ensures the container is as wide as all its content */
            align-items: center;
            gap: 20px; /* Space between images */
        }
        
        /* Styling for each image */
        .image-gallery img {
            height: 250px;
            width: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
       .image-gallery {
            /* This animation logic will only apply if the 'data-animated' attribute is true */
            animation: scroll 1000s linear infinite;
          }
       /* THIS IS THE CRUCIAL RULE FOR PAUSING */
       /*
       .scroller-container:hover .image-gallery {
            animation-play-state: paused;
        }
         */ 
       
      @keyframes scroll {
        to {
          /* Move the gallery to the left by half its width */
          transform: translate(calc(-50% - 10px)); /* 10px is half the gap */
        }
      }

    /* mega sponsor container */
    /* The main container for the slideshow */
        body {
            margin: 0;
            background-color: #f0f2f5;
            font-family: sans-serif;
        }

        .center-wrapper {
            display: grid;
            place-items: center;
            min-height: 30vh;
        }

        /* The main container for the slideshow */
       .sponsor-container {
    position: relative;
    height: 60vh;
    /* --- CHANGED: Width is now 4/3 of the height for a landscape view --- */
    width: 80vh; 
    max-width: 1400px;  /* Adjusted for landscape */
    max-height: 800px; /* Adjusted for landscape */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);

    /* Fade-in animation */
    opacity: 0;
    animation: fadeIn 1.2s ease-out 0.5s forwards;
    }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        /* Styling for the sponsor images */
        .sponsor-container .sponsor-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            
            /* This fits the entire image inside the container */
            object-fit: contain; 
            
            /* Fade transition effect */
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
        }

        /* This class makes an image visible */
        .sponsor-container .sponsor-img.active {
            opacity: 1;
        }

        /* Styling for the sponsor images */
        .sponsor-container .sponsor-img {
            position: absolute; /* Stack all images on top of each other */
            top: 0;
            left: 0;
            width: 100%;  /* Image width is 100% of the container */
            height: 100%; /* Image height is 100% of the container */
            /*object-fit: cover; /* Ensures the image covers the area without distortion */
            object-fit: contain;
            
            /* Fade transition effect */
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
        }

        /* This class makes an image visible */
        .sponsor-container .sponsor-img.active {
            opacity: 1;
        }




         /* ***********Scroll container styles ENDS here **************** */
        
        
        
        
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .committee-member {
                flex: 0 0 calc(25% - 20px);
            }
        }
        
        @media (max-width: 992px) {
            .committee-member {
                flex: 0 0 calc(33.333% - 20px);
            }
            
            .carousel-nav.prev {
                left: -15px;
            }
            
            .carousel-nav.next {
                right: -15px;
            }
        }
        
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                text-align: center;
            }
            
            .header-links {
                margin-top: 10px;
            }
            
            .nav-menu {
                flex-direction: column;
            }
            
            .dropdown-menu {
                position: static;
                width: 100%;
                opacity: 1;
                visibility: visible;
                display: none;
            }
            
            .nav-menu li:hover .dropdown-menu {
                display: block;
            }
            
            .hero-carousel {
                height: 400px;
            }
            
            .hero-content h1 {
                font-size: 36px;
            }
            
            .hero-content p {
                font-size: 16px;
            }
            
            .carousel-control {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .carousel-control.prev {
                left: 15px;
            }
            
            .carousel-control.next {
                right: 15px;
            }
            
            .overlay {
                padding: 60px 15px 30px;
            }
            
            .search-form {
                flex-direction: column;
            }
            
            .search-form input {
                border-radius: 4px;
                margin-bottom: 10px;
            }
            
            .search-form button {
                border-radius: 4px;
                padding: 12px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form input {
                border-radius: 4px;
                margin-bottom: 10px;
            }
            
            .newsletter-form button {
                border-radius: 4px;
                padding: 12px;
            }
            
            /* About Us responsive */
            .about-content {
                flex-direction: column;
            }
            
            .about-image, .about-text {
                flex: none;
                width: 100%;
            }
            
            .mission-vision {
                grid-template-columns: 1fr;
            }
            
            .committee-member {
                flex: 0 0 calc(50% - 20px);
            }
            
            .carousel-nav {
                width: 40px;
                height: 40px;
            }
            
            .carousel-nav.prev {
                left: -10px;
            }
            
            .carousel-nav.next {
                right: -10px;
            }
        }
        
        @media (max-width: 576px) {
            .committee-member {
                flex: 0 0 calc(100% - 20px);
            }
            
            .carousel-nav {
                width: 35px;
                height: 35px;
                font-size: 12px;
            }
        }
        
        @media (max-width: 480px) {
            .caption {
                font-size: 1.2rem;
            }
            
            .description {
                font-size: 0.9rem;
            }
            
            .carousel-control {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            
            .control-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            .indicator {
                width: 12px;
                height: 12px;
            }
            
            .hero-content h1 {
                font-size: 28px;
            }
            
            .hero-content p {
                font-size: 14px;
            }
        }