         {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 1rem 1rem; /* Reduced padding to match nav bar height */
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Added box shadow */
            border-radius: 10px 10px 0 0; /* Added border radius to top corners */
        }

        .header-logo {
            max-width: 100px; /* Adjust this value as needed */
            height: auto; /* Keeps the aspect ratio */
            margin-right: 10px; /* Adjust the margin as needed */
            vertical-align: middle; /* Corrected vertical alignment */
        }

        header h1 {
            font-size: 2rem; /* Reduced font size to match nav bar height */
            margin-bottom: 0.5rem;
        }

        header p {
            font-size: 1rem;
            opacity: 0.9;
        }

        nav {
            background-color: #333;
            padding: 1rem;
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        nav a {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: background 0.3s;
        }

        nav a:hover {
            background-color: #667eea;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            box-sizing: border-box;
        }

        .section {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }

        .section-content {
            margin-bottom: 20px;
        }

        .section-content h2 {
            color: #333;
            font-size: 24px;
            margin-bottom: 10px;
        }

        .section-content p {
            color: #666;
            font-size: 16px;
            line-height: 1.6;
        }

        .carousel {
            position: relative;
            overflow: hidden;
        }

       .carousel-image {
    width: 100%; /* Ensures the image takes up the full width of its container */
    max-width: 600px; /* Adjust this value to set the maximum width of the images */
    height: auto; /* Keeps the aspect ratio */
    display: none;
    padding: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.carousel-image.active {
    display: block;
}


        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .card {
            background: #f4f4f4;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .card:hover {
            transform: translateY(-5px);
        }

        .card h3 {
            color: #667eea;
            margin-bottom: 1rem;
        }

        .cta-button {
            display: inline-block;
            background-color: #667eea;
            color: white;
            padding: 1rem 2rem;
            border-radius: 4px;
            text-decoration: none;
            transition: background 0.3s;
            text-align: center;
        }

        .cta-button:hover {
            background-color: #764ba2;
        }

        footer {
            background: linear-gradient(135deg, #764ba2 0%, #667eea 100%); /* Added gradient */
            color: white;
            text-align: center;
            padding: 2rem 1rem;
            margin-top: 3rem;
            box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1); /* Added box shadow */
            border-radius: 0 0 10px 10px; /* Added border radius to bottom corners */
        }

        @media (max-width: 768px) {
            header h1 {
                font-size: 1.8rem;
            }

            header p {
                font-size: 1rem;
            }

            nav ul {
                gap: 0.5rem;
            }

            nav a {
                padding: 0.4rem 0.8rem;
                font-size: 0.9rem;
            }

            .section {
                padding: 2rem 0.5rem;
            }

            .section h2 {
                font-size: 1.5rem;
            }

            .cta-button {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            header h1 {
                font-size: 1.5rem;
            }

            nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }

            nav a {
                display: block;
                width: 100%;
            }

            .grid {
                grid-template-columns: 1fr;
            }

            .cta-button {
                width: 100%;
            }
        }
