  body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #FAFAFA;
            color: #333;
        }
        .header {
            background: url('https://www.geekduptreats.com/images/header.jpg') no-repeat center center/cover;
            color: white;
            text-align: center;
            padding: 40px 20px;
            font-size: 24px;
            font-weight: bold;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            position: relative;
        }
        .logo {
            max-width: 120px;
        }
        .nav-bar {
            background-color: #2A9D8F;
            padding: 15px 0;
            text-align: center;
        }
        .nav-bar a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            font-size: 18px;
            font-weight: bold;
            text-transform: uppercase;
        }
        .content-container {
            max-width: 1000px;
            margin: 40px auto;
            padding: 20px;
            background-color: white;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
        }
        .content-title {
            font-size: 28px;
            font-weight: bold;
            text-align: center;
            color: #6A0DAD;
            margin-bottom: 20px;
        }
        .button {
            display: inline-block;
            padding: 12px 24px;
            background-color: #6A0DAD;
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            border-radius: 5px;
            transition: background 0.3s ease-in-out;
        }
        .button:hover {
            background-color: #4B0B79;
        }
        .card {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
            text-align: center;
            margin: 20px;
        }
        .card img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }
        .footer {
            background-color: #6A0DAD;
            color: white;
            text-align: center;
            padding: 20px;
            font-size: 16px;
            margin-top: 40px;
        }
		a, a:visited, a:hover, a:active {
			text-decoration: none;
			color: white;
			outline: none;
		}
		.package-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 40px;
        }
        .package-card {
            background-color: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease-in-out;
        }
        .package-card:hover {
            transform: scale(1.05);
        }
        .package-title {
            background-color: #6A0DAD;
            color: white;
            padding: 12px;
            font-size: 20px;
            font-weight: bold;
            text-transform: uppercase;
            border-radius: 8px;
        }
        .package-price {
            font-size: 22px;
            font-weight: bold;
            color: #2A9D8F;
            margin: 10px 0;
        }
        .package-details {
            font-size: 16px;
            padding: 10px;
        }
		

