        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f0f8ff;
            color: #333;
        }
        header {
            background-color: #004080;
            padding: 30px;
            text-align: center;
			text-shadow: 2px 2px 2px black;
            color: white;
			border-bottom: 1px solid navy;
        }
        nav {
            background-color: #0066cc;
            display: flex;
            justify-content: center;
			border-bottom: 1px solid navy;
        }
        nav a {
            color: white;
            padding: 15px;
			font-weight: bold;
			font-variant: small-caps;
            text-decoration: none;
            text-transform: uppercase;
			text-shadow: 2px 2px 2px black;
        }
        nav a:hover {
            background-color: #003366;
			border-radius: 40px;
			color: #66CCFF;
        }
        .hero {
            text-align: center;
            padding: 80px 20px;
            background-color: #e6f2ff;
        }
        .hero h1 {
            font-size: 3em;
            color: #003366;
        }
        .hero p {
            font-size: 1.8em;
            color: #666;
        }
        .container {
            padding: 50px 20px;
            max-width: 1200px;
            margin: auto;
            text-align: center;
        }
        .contact-form {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 5px;
			text-align: justify;
			border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            max-width: 1200px;
            margin: 60px auto;
        }
        .contact-form h2 {
            color: #003366;
        }
        .contact-form label {
            display: block;
            margin: 10px 0 5px;
            color: #333;
        }
        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
        .contact-form button {
            background-color: #004080;
            color: white;
            border: none;
            padding: 15px;
            text-transform: uppercase;
            cursor: pointer;
            width: 100%;
            border-radius: 4px;
        }
        .contact-form button:hover {
            background-color: #003366;
        }
        footer {
    background-color: #003366;
    color: white;
    padding: 20px;
    text-align: center;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #CCFF33; /* A golden color for the links */
    text-decoration: none; /* Removes the underline from links */
    font-weight: bold; /* Makes the links bold */
}

footer a:hover {
    color: #FFA500; /* Orange color on hover */
    text-decoration: underline; /* Adds underline on hover */
}

footer a:visited {
    color: #C0C0C0; /* Slightly different color for visited links */
}

		.logo-container {
    display: inline-block; /* Ensures the logo stays inline with other content */
    background-color: white; /* White background for the logo */
    padding: 20px; /* Padding around the image */
    border: 3px solid #003366; /* Dark blue border */
    border-radius: 20px; /* Rounded corners */
    margin-right: 20px; /* Adds some space to the right of the logo */
	position: absolute;
	left: 10px;
	top: 10px;
}

.logo-container img {
    width: 180px; /* Logo width */
    display: block; /* Ensures the image does not add extra spacing */
}
.specials-container {
    background-color: #FFB347;
	border: 1px solid navy;
    padding: 100px 20px;
	max-width: 1200px;
	margin-top: 20px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.specials-container h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

.special-item {
    background-color: #B2E0B2;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.special-item:hover {
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
}

.special-details {
    font-size: 18px;
    color: #555;
    font-weight: bold;
}

.special-expiry {
    font-size: 14px;
    color: #888;
    margin-top: 10px;
}

