body {
            margin: 0;
            font-family: 'Roboto', sans-serif;
            background: #f4f4f4;
            color: #333;
        }

        /* Hero Section */
        .hero {
            background: url("assets/images/hero_bg.jpg") no-repeat center center/cover;
            padding: 100px 20px;
            text-align: center;
            color: #fff;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .hero a {
            display: inline-block;
            margin: 0 8px;
            padding: 10px 20px;
            background: #20b2aa;
            color: #fff;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 500;
            transition: background 0.3s;
        }

        .hero a:hover {
            background: #008b8b;
        }

        /* Featured Packages Section */
        .featured-packages {
            margin: 40px auto;
            padding: 20px;
            max-width: 1200px;
        }

        .featured-packages h2 {
            text-align: center;
            margin-bottom: 25px;
            font-size: 2rem;
            color: #20b2aa;
        }

        .packages {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .package {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            height: 250px;
            background: #000;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .package:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.2);
        }

        .package img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .package:hover img {
            transform: scale(1.05);
        }

        .package-info {
            position: absolute;
            bottom: 15px;
            left: 15px;
            color: #fff;
            text-shadow: 0 2px 5px rgba(0,0,0,0.6);
        }

        .package-info h3 {
            margin: 0 0 5px;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .package-info p {
            margin: 2px 0;
            font-size: 0.9rem;
        }

        .package-info .price {
            font-weight: bold;
            color: #00bfff;
        }

        .package-info a {
            display: inline-block;
            margin-top: 8px;
            padding: 6px 12px;
            background: #20b2aa;
            color: #fff;
            text-decoration: none;
            border-radius: 6px;
            font-size: 0.85rem;
        }

        .package-info a:hover {
            background: #008b8b;
        }

        @media screen and (max-width: 900px) {
            .packages {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media screen and (max-width: 600px) {
            .packages {
                grid-template-columns: 1fr;
            }
        }
/* Hero Section */
.hero {
    text-align: center;
    padding: 50px 20px;
    background: #f2f2f2;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #007bff;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.hero a {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 5px;
    transition: 0.3s;
}

.hero a:hover {
    background: #0056b3;
}

/* Featured Packages */
.featured-packages {
    padding: 40px 20px;
}

.featured-packages h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #007bff;
}

.packages {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.package {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    flex: 1 1 250px;
    max-width: 300px;
    transition: 0.3s;
}

.package img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 5px;
}

.package h3 {
    margin: 10px 0;
    color: #007bff;
}

.package p {
    margin: 5px 0;
    font-size: 0.95rem;
}

.package a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.package a:hover {
    background: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
    .packages {
        flex-direction: column;
        align-items: center;
    }

    .package {
        max-width: 90%;
    }
}
