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

        /* .section{
            padding: 0 20px;
        } */
        .promo-banner {
        background-color: #75270a; /* burnt orange */
            color: white;
            padding: 15px 25px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-family: 'Segoe UI', sans-serif;
            font-size: 16px;
            font-weight: 500;
            position: sticky; /* stays visible at top */
            top: 0;
            z-index: 1000;
        }

        .promo-icon {
            font-size: 28px;
        }

        .promo-text {
            display: flex;
            flex-direction: column;
        }

        .promo-title {
            font-size: 14px;
            text-transform: uppercase;
            opacity: 0.9;
            letter-spacing: 1px;
        }

        .promo-main {
            font-size: 18px;
            font-weight: bold;
        }


        /* Hero Section */
        .hero {
            /* height: 100vh; */
            display: flex;
            flex-direction: column;
            
            /* padding: 0 50px; */
            align-items: center;
            justify-content: center;
            text-align: center;
            margin:  20px ;
        }
        .hero img{
            height: 300px;
            width: auto;
        }

        .hero-content {
            /* max-width: 600px; */
            /* padding: 0 50px; */
            animation: fadeInUp 1s ease-out;

        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 20px;
            color: #762804;
            font-family: "Mozilla Headline", sans-serif;

        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            /* color: ; */
            font-weight: 300;
            font-family: "Nata Sans", sans-serif;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            
        }

        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            border: 1px solid #fbcc5a;
            color: #762804;
            background-color: #fbcc5a;
             font-family: "Nata Sans", sans-serif;
        }

        .btn-secondary {
            background: white;
            color: #333;
            border: 2px solid #ddd;
             font-family: "Nata Sans", sans-serif;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        /* Section Styles */
        .section {
            padding: 80px 20px;
            /* max-width: 1200px; */
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #333;
            font-family: "Mozilla Headline", sans-serif;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
             font-family: "Nata Sans", sans-serif;
            
        }

        /* How It Works */
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .step {
            text-align: center;
            padding: 30px 20px;
            border-radius: 20px;
            /* background: ; */
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .step:hover {
            transform: translateY(-10px);
        }

        .step-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background-color: #762804 ;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .step h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #333;
            /* font-family: "Mozilla Headline", sans-serif; */
            
        }

        .step p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Sample Packages */
        .packages {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .package-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .package-card:hover {
            transform: translateY(-10px);
        }

        .package-image img{
            height: 300px;
            width: 100%;
            object-fit: cover;
            
        }

        .package-content {
            padding: 25px;
        }

        .package-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
            /* font-family: "Mozilla Headline", sans-serif; */
        }

        .package-price {
            font-size: 1.1rem;
            color: #ff6b6b;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .package-description {
            color: #666;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        /* Add-ons */
        .addons {
            display: flex;
            overflow-x: auto;
            gap: 20px;
            padding: 20px 0;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .addons::-webkit-scrollbar {
            display: none;
        }

        .addon {
            flex: 0 0 200px;
            background: white;
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .addon:hover {
            transform: translateY(-5px);
        }

        .addon-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .addon-name {
            font-weight: 600;
            margin-bottom: 5px;
            color: #333;
        }

        .addon-price {
            color: #ff6b6b;
            font-weight: 600;
        }

        /* Events Section */
        .events {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .event {
            padding: 30px 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .event:hover {
            transform: translateY(-5px);
        }

        .event-icon {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .event-name {
            font-weight: 600;
            color: #333;
        }

        /* Contact Form */
        .form-container {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #eee;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ff6b6b;
        }

        .form-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

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

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            color: #ff6b6b;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: #ff6b6b;
        }
        .copy{
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #555;
        }
        .copy a{
            color: #eee;
            font-size: 15px;
            text-decoration: none;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .form-buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Background patterns for sections */
        .section:nth-child(even) {
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(78, 205, 196, 0.05));
        }