        /* Special styles for the homepage that don't affect other pages */
        .home-header {
            padding-bottom: 20px;
            /* Reduced bottom padding for the header */
        }

        /* Carousel styles */
        .carousel-section {
            margin-top: 0;
            /* Remove top margin to bring it closer to header */
        }

        .carousel-container {
            margin: 10px 0 80px 0;
            /* Reduced top margin from 40px to 10px */
            width: 100%;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--border-color);
            height: 500px;
            /* Fixed height for the carousel */
        }

        .carousel {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-caption {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 10px 15px;
            font-size: 14px;
        }

        .carousel-controls {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            justify-content: space-between;
            pointer-events: none;
        }

        .carousel-button {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 0 20px;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s;
            opacity: 0;
            pointer-events: auto;
            transition: opacity 0.3s;
        }

        .carousel-container:hover .carousel-button {
            opacity: 1;
        }

        .carousel-button:hover {
            background-color: rgba(0, 0, 0, 0.4);
        }

        .carousel-heading {
            margin-bottom: 15px;
            /* Reduced from 20px */
        }

        /* Indicators */
        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .indicator.active {
            background-color: white;
        }

        @media (max-width: 768px) {
            .carousel-container {
                height: 300px;
            }
        }