body {
            font-family: 'Inter', sans-serif;
            background-color: #f8f8f8; /* Very light grey background */
        }
        .hero-background {
            /* Using a placeholder image that aligns with a grey theme */
            background-image: url('./images/header.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed; /* Parallax effect */
        }
        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: #6b7280; /* Darker grey accent for titles */
            margin: 10px auto 0;
            border-radius: 9999px;
        }
        /* Carousel specific styles */
        .carousel-container {
            position: relative;
            max-width: 900px;
            margin: auto;
            overflow: hidden;
            border-radius: 1rem; /* Rounded corners */
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        .carousel-slide {
            display: none; /* Hide all slides by default */
            width: 100%;
            transition: opacity 0.5s ease-in-out;
        }
        .carousel-slide.active {
            display: block; /* Show active slide */
            opacity: 1;
        }
        .carousel-slide img {
            width: 100%;
            height: 450px; /* Fixed height for consistency */
            object-fit: cover; /* Cover the area, crop if necessary */
            border-radius: 1rem; /* Rounded corners */
        }
        .carousel-button {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            padding: 16px;
            margin-top: -22px;
            color: white;
            font-weight: bold;
            font-size: 20px;
            transition: 0.6s ease;
            border-radius: 0 3px 3px 0;
            user-select: none;
            background-color: rgba(0,0,0,0.5);
            border-radius: 9999px; /* Fully rounded buttons */
        }
        .carousel-button.prev {
            left: 10px;
            border-radius: 3px 0 0 3px;
        }
        .carousel-button.next {
            right: 10px;
            border-radius: 0 3px 3px 0;
        }
        .carousel-button:hover {
            background-color: rgba(0,0,0,0.8);
        }
        .carousel-dots {
            text-align: center;
            padding: 10px;
            position: absolute;
            bottom: 10px;
            width: 100%;
        }
        .dot {
            cursor: pointer;
            height: 12px;
            width: 12px;
            margin: 0 4px;
            background-color: rgba(255,255,255,0.6);
            border-radius: 50%;
            display: inline-block;
            transition: background-color 0.6s ease;
        }
        .dot.active, .dot:hover {
            background-color: #ffffff;
        }
        .loading-spinner {
            border: 4px solid rgba(0, 0, 0, 0.1);
            border-left-color: #6b7280; /* Grey spinner */
            border-radius: 50%;
            width: 24px;
            height: 24px;
            animation: spin 1s linear infinite;
            display: inline-block;
            vertical-align: middle;
            margin-left: 8px;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }