/* Basic CSS for demonstration purposes */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #fff; /* White background */
    color: #000; /* Black text */
    padding: 20px;
    text-align: center;
}

nav {
    background: linear-gradient(to right, #4a90e2, #50e3c2); /* Add a gradient background */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    padding: 10px 0; /* Adjust padding */
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; /* Center align menu items */
    flex-wrap: wrap; /* Ensure items wrap if space is limited */
}

nav ul li {
    margin: 0 10px; /* Adjust spacing between menu items */
    display: inline-block; /* Ensure horizontal alignment */
}

nav ul li a {
    color: white; /* White text for better contrast */
    text-decoration: none;
    font-weight: bold;
    font-size: 16px; /* Adjusted font size for small screens */
    transition: color 0.3s, transform 0.3s; /* Smooth hover effect */
}

nav ul li a:hover {
    color: #ffdd00; /* Highlight text with yellow on hover */
    transform: scale(1.1); /* Slight zoom effect on hover */
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

/* Centering content */
.center-content {
    text-align: center;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: flex-start; /* Align to the left */
    gap: 36px; /* Tripled spacing between icons */
    padding-top: 45px; /* Space below the "Contact Us" button */
}

.social-icons a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-icons img {
    width: 20px; /* Smaller icon size */
    height: 20px;
    opacity: 0.8; /* Slight transparency for subtlety */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-icons img:hover {
    opacity: 1;
    transform: scale(1.1); /* Slight zoom effect */
}

/* Responsive Design */
@media (max-width: 600px) {
    nav ul {
        justify-content: space-around; /* Adjust alignment for smaller screens */
    }

    nav ul li {
        margin: 5px; /* Reduce spacing between items */
    }

    nav ul li a {
        font-size: 14px; /* Slightly smaller font for better fit */
    }

    .social-icons {
        gap: 30px; /* Slightly reduced spacing on mobile for better fit */
    }

    .social-icons img {
        width: 18px; /* Slightly smaller icons for mobile */
        height: 18px;
    }
}
