
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #f5f5f5;
            color: #333;
        }

        /* Header */
        .header {
            background-color: white;
            padding: 15px 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between; /* Separate logo, links, and profile icon */
            align-items: center;
            padding: 0 20px;
            gap: 0; /* Remove extra gap between main nav items */
        }

        .logo {
            font-weight: 900;
            font-size: 18px;
            color: #333;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            gap: 100px; /* Keep large gap between links */
            list-style: none;
            justify-content: center; /* Center links horizontally */
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 700; /* Increased for bolder text */
            font-size: 20px; /* Increased for larger text */
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #70C5CE;
        }

        .profile-icon {
            width: 30px;
            height: 30px;
            background-color: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
        }

        /* Hero Section */
        .hero {
            background: #fff;
            width: 100vw;
            height: 100vh;
            min-height: 600px;
            padding: 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-bg {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100vw;
            height: 220px;
            background: #70C5CE;
            border-radius: 0;
            box-shadow: none;
            z-index: 1;
        }

        .hero-bottom-semicircle {
            position: absolute;
            bottom: 220px;
            left: 50%;
            transform: translateX(-50%);
            width: 320px;
            height: 160px;
            background: #70C5CE;
            border-top-left-radius: 160px;
            border-top-right-radius: 160px;
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
            z-index: 1;
            box-shadow: none;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: absolute;
            top: 35%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            text-align: center;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
        }

        .cta-buttons {
            position: absolute;
            left: 50%;
            bottom: -220px;
            transform: translate(-50%, 0);
            z-index: 3;
            display: flex;
            flex-direction: column;
            gap: 15px;
            justify-content: center;
            align-items: center;
            flex-wrap: nowrap;
        }

        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .btn-primary {
            background-color: #FFB84D;
            color: white;
        }

        .btn-secondary {
            background-color: white;
            color: #70C5CE;
            border: 2px solid #70C5CE;
        }

        /* Event List Section */
        .events-section-top-bar {
            position: absolute;
            top: 0;
            left: 0;
            width: 100vw;
            height: 220px;
            background: #70C5CE;
            z-index: 1;
        }

        .events-section {
            position: relative;
            background-color: #fff;
            padding: 60px 20px;
            z-index: 2;
        }

        .events-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .events-title {
            position: relative;
            z-index: 4;
            background: none;
            padding: 0;
            margin-bottom: 50px;
            text-align: center;
            font-size: 48px;
            font-weight: 800;
            letter-spacing: 1px;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 3;
        }

        .event-card {
            background-color: #D4F3F7;
            color: #000;
            border-radius: 18px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.12);
            padding: 28px;
            position: relative;
            z-index: 2;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .event-title {
            font-size: 24px;
            font-weight: bold;
            color: #333;
            margin-bottom: 8px;
        }

        .event-date {
            color: #666;
            font-size: 14px;
            margin-bottom: 5px;
        }

        .event-location {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .event-description {
            color: #555;
            line-height: 1.5;
            margin-bottom: 20px;
            font-size: 14px;
        }

        .view-details {
            background-color: #FFB84D;
            color: white;
            padding: 10px 20px;
            border: none;
            text-decoration: none;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .view-details:hover {
            background-color: #e6a043;
        }

        /* Footer */
        .footer {
            background-color: #2c3e50;
            color: white;
            padding: 40px 20px 20px;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .footer-links {
            margin-bottom: 20px;
        }

        .footer-links a {
            color: #70C5CE;
            text-decoration: none;
            margin: 0 15px;
            font-size: 14px;
        }

        .footer-copyright {
            font-size: 12px;
            color: #888;
            border-top: 1px solid #444;
            padding-top: 20px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 16px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 200px;
            }

            .events-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 60px 20px 80px;
            }

            .hero h1 {
                font-size: 28px;
            }

            .events-title {
                font-size: 28px;
            }
        }
