 :root {
            --primary-green: #4a7c59;
            --light-green: #7fb069;
            --primary-yellow: #f7d794;
            --light-yellow: #f9e79f;
            --dark-green: #2d5016;
            --orange: #ff6b35;
        }

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

        html {
            overflow-x: hidden;
            width: 100%;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            background: linear-gradient(135deg, var(--light-yellow) 0%, var(--light-green) 100%);
            overflow-x: hidden;
            width: 100%;
            position: relative;
        }

        /* Floating vegetables animation */
        .floating-veggie {
            position: fixed;
            font-size: 5rem;
            opacity: 0.1;
            animation: float 15s infinite linear;
            z-index: 999;
            pointer-events: none;
            max-width: 100vw;
        }

        @keyframes float {
            0% { transform: translateY(100vh) rotate(0deg); }
            100% { transform: translateY(-100vh) rotate(360deg); }
        }

        /* Navigation */
        .navbar {
            background: rgba(74, 124, 89, 0.95) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-weight: bold;
            color: var(--primary-yellow) !important;
            font-size: 1.2rem;
        }

        .nav-link {
            color: var(--light-yellow) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary-yellow) !important;
            transform: translateY(-2px);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-yellow);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 50%, var(--primary-yellow) 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
            animation: sparkle 3s infinite;
        }

        @keyframes sparkle {
            0%, 100% { opacity: 0; }
            50% { opacity: 1; }
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: bold;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            padding-top: 40px;
            margin-top: 40px;
            margin-bottom: 1rem;
            animation: slideInUp 1s ease-out;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--light-yellow);
            margin-bottom: 2rem;
            animation: slideInUp 1s ease-out 0.3s both;
        }

        .hero-date {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            border-radius: 50px;
            color: white;
            font-weight: bold;
            font-size: 2rem;
            margin-bottom: 2rem;
            animation: slideInUp 1s ease-out 0.6s both;
        }

        .social-links a {
            color: white;
            font-size: 2rem;
            margin: 0 15px;
            transition: all 0.3s ease;
            animation: bounceIn 1s ease-out 0.9s both;
        }

        .social-links a:hover {
            color: var(--primary-yellow);
            transform: scale(1.2) rotate(10deg);
        }

        @keyframes slideInUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes bounceIn {
            0% {
                transform: scale(0);
                opacity: 0;
            }
            50% {
                transform: scale(1.2);
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Countdown */
        .countdown-container {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            margin: 2rem 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            max-width: 100%;
        }

        .countdown-item {
            text-align: center;
            padding: 1rem;
        }

        .countdown-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--primary-green);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .countdown-label {
            font-size: 0.9rem;
            color: var(--dark-green);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Section Styling */
        .section {
            padding: 80px 0;
            position: relative;
            width: 100%;
            overflow-x: hidden;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-green);
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(45deg, var(--primary-yellow), var(--orange));
            border-radius: 2px;
        }

        /* Cards */
        .card {
            border: none;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            overflow: hidden;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            max-width: 100%;
        }

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

        .speaker-card {
            cursor: pointer;
            position: relative;
        }

        .speaker-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, var(--primary-green), var(--light-green));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .speaker-card:hover::before {
            opacity: 0.1;
        }

        /* Buttons */
        .btn-primary {
            background: linear-gradient(45deg, var(--primary-green), var(--light-green));
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(74, 124, 89, 0.3);
            background: linear-gradient(45deg, var(--light-green), var(--primary-green));
        }

        .btn-warning {
            background: linear-gradient(45deg, var(--primary-yellow), var(--orange));
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: bold;
            color: var(--dark-green);
            transition: all 0.3s ease;
        }

        .btn-warning:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
        }

        /* Pricing */
        .pricing-card {
            position: relative;
            overflow: visible;
        }

        .pricing-badge {
            position: absolute;
            top: -15px;
            right: 20px;
            background: var(--orange);
            color: white;
            padding: 5px 20px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        /* Map */
        .map-container {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            max-width: 100%;
        }

        /* Gallery */
        .gallery-nav {
            margin-bottom: 2rem;
        }

        .gallery-nav .btn {
            margin: 5px;
            border-radius: 25px;
        }

        /* Footer */
        .footer {
            background: var(--dark-green);
            color: white;
            padding: 40px 0 20px;
            width: 100%;
        }

        .footer h5 {
            color: var(--primary-yellow);
            margin-bottom: 1rem;
        }

        .footer a {
            color: var(--light-yellow);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: var(--primary-yellow);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
                padding-top: 40px;
                margin-top: 40px;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .hero-date {
                font-size: 1.5rem;
                padding: 0.8rem 1.5rem;
            }
            
            .countdown-number {
                font-size: 2rem;
            }
            
            .countdown-item {
                padding: 0.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .social-links a {
                font-size: 1.5rem;
                margin: 0 10px;
            }
            
            .floating-veggie {
                font-size: 3rem;
            }
        }

        /* Modal styling */
        .modal-content {
            border-radius: 20px;
            border: none;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .modal-header {
            background: linear-gradient(45deg, var(--primary-green), var(--light-green));
            color: white;
            border-radius: 20px 20px 0 0;
        }

        .modal-header .btn-close {
            filter: invert(1);
        }

        /* Program schedule */
        .schedule-day {
            background: rgba(255,255,255,0.9);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            max-width: 100%;
        }

        .schedule-item {
            display: flex;
            align-items: center;
            padding: 1rem;
            margin: 0.5rem 0;
            border-left: 4px solid var(--primary-green);
            background: rgba(247, 215, 148, 0.3);
            border-radius: 0 10px 10px 0;
            transition: all 0.3s ease;
        }

        .schedule-item:hover {
            background: rgba(247, 215, 148, 0.5);
            transform: translateX(5px);
        }

        .schedule-time {
            font-weight: bold;
            color: var(--primary-green);
            min-width: 100px;
            margin-right: 1rem;
        }

        .break-item {
            border-left-color: var(--orange);
            background: rgba(255, 107, 53, 0.2);
        }

        .break-item:hover {
            background: rgba(255, 107, 53, 0.3);
        }

        @media (max-width: 576px) {
            .schedule-item {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .schedule-time {
                margin-bottom: 0.5rem;
            }
        }