* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }

    body {
        background: #f0f4f8;
        color: #333;
    }

    /* ===== HEADER ===== */
    header {
        background: linear-gradient(90deg, #007b00, #00a651);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 10px;
        gap: 15px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    header img {
        height: 60px;
        filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.3));
    }

    header h1 {
        font-size: 26px;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    }

    /* ===== NAVIGATION ===== */
    nav {
        background-color: #025c1a;
        text-align: center;
        padding: 10px 0;
        position: sticky;
        top: 90px;
        z-index: 999;
    }

    nav a {
        color: #fff;
        text-decoration: none;
        padding: 10px 20px;
        margin: 0 5px;
        border-radius: 6px;
        font-weight: 500;
        transition: 0.3s;
    }

    nav a:hover {
        background-color: #00a651;
        transform: scale(1.1);
    }

    /* ===== HERO SECTION ===== */
    .hero {
        background: url('unnamed.jpg') center/cover no-repeat;
        height: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        color: white;
        text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
        animation: fadeIn 2s ease;
    }

    .hero h2 {
        font-size: 48px;
        font-weight: bold;
        animation: slideIn 1.5s ease;
    }

    .hero p {
        font-size: 20px;
        margin-top: 10px;
        animation: fadeIn 2s ease-in-out;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    @keyframes slideIn {
        from { transform: translateY(-50px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }

    /* ===== INTRO SECTION ===== */
    .intro {
        max-width: 1000px;
        margin: 40px auto;
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        text-align: center;
    }

    .intro h2 {
        color: #007b00;
        margin-bottom: 10px;
    }

    .intro p {
        line-height: 1.6;
        color: #555;
    }

    /* ===== PRICE TABLE ===== */
    .pricing {
        max-width: 900px;
        margin: 40px auto;
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .pricing h2 {
        text-align: center;
        color: #007b00;
        margin-bottom: 20px;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        text-align: center;
    }

    th, td {
        padding: 12px;
        border-bottom: 1px solid #ccc;
    }

    th {
        background: #007b00;
        color: white;
    }

    tr:hover {
        background-color: #f5fff5;
    }

    /* ===== BOOKING FORM ===== */
    .booking {
        max-width: 800px;
        margin: 40px auto;
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .booking h2 {
        text-align: center;
        color: #007b00;
        margin-bottom: 20px;
    }

    form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    input, select, textarea, button {
        padding: 10px 15px;
        border: 2px solid #00a651;
        border-radius: 8px;
        font-size: 15px;
        outline: none;
        transition: 0.3s;
    }

    input:focus, select:focus, textarea:focus {
        box-shadow: 0 0 8px #00a651;
    }

    button {
        background: #00a651;
        color: white;
        border: none;
        cursor: pointer;
        font-weight: bold;
        transition: 0.3s;
    }

    button:hover {
        background: #007b00;
        transform: scale(1.05);
    }

    /* ===== FOOTER ===== */
    footer {
        background: linear-gradient(90deg, #007b00, #00a651);
        color: white;
        text-align: center;
        padding: 20px;
        margin-top: 50px;
    }

    footer a {
        color: #a7ff83;
        text-decoration: none;
    }

    footer a:hover {
        text-decoration: underline;
    }

    @media(max-width: 768px) {
        .hero h2 { font-size: 32px; }
        .hero p { font-size: 16px; }
        nav a { padding: 8px 12px; margin: 0 2px; }
    }