/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #272727; /* Sleek dark background */
    color: #ffffff; /* White text for contrast */
    overflow-x: hidden; /* Prevent horizontal scrolling */
    line-height: 1.6; /* Improve text readability */
}

/* Navigation Bar */
.navbar {
    background-color: #1f1f1f; /* Dark gray background for the navbar */
    top: 0;
    left: 0;
    width: 100%; /* Full width of the screen */
    z-index: 10; /* Ensure it appears above other elements */
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); /* Subtle shadow for depth */
}

.navbar ul {
    display: flex; /* Align items horizontally */
    justify-content: space-around; /* Space items evenly */
    list-style: none; /* Remove bullet points */
    margin: 0;
    padding: 0;
}

.navbar ul li {
    display: inline; /* Inline list items */
}

.navbar ul li a {
    color: #ffffff; /* White text color */
    text-decoration: none; /* Remove underline */
    padding: 10px 15px;
    font-size: 18px; /* Consistent font size */
    font-weight: bold;
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover effect */
}

.navbar ul li a.active {
    background-color: #ffd700; /* Highlight active page with gold */
    color: #000; /* Black text for contrast */
}

.navbar ul li a:hover {
    background-color: #575757; /* Slightly lighter background on hover */
}

/* Container */
.container {
    padding: 20px;
    margin-top: 100px; /* Add space below the fixed navbar */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
}

/* Contact Section */
.contact-section {
    max-width: 800px;
    text-align: center;
    background: rgba(31, 31, 31, 0.95);/* Semi-transparent background */
    padding: 40px;
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6); /* Subtle shadow for depth */
    color: #e0e0e0; /* Light text color for readability */
    margin-bottom: 30px; /* Add spacing below the section */
}

.contact-section h1 {
    font-size: 36px;
    color: #ffd700; /* Gold color for the heading */
    margin-bottom: 20px;
    text-transform: uppercase; /* Make the heading uppercase */
    letter-spacing: 1.5px; /* Add spacing for a professional look */
}

.contact-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #d3d3d3; /* Slightly lighter text for better readability */
}

/* Contact Details */
.contact-details p {
    font-size: 18px;
    margin: 10px 0;
}

.contact-details a {
    color: #ffd700; /* Gold color for links */
    text-decoration: none; /* Remove underline */
    font-weight: bold;
}

.contact-details a:hover {
    text-decoration: underline; /* Add underline on hover */
}

/* Google Maps */
.google-maps {
    margin-top: 20px;
    width: 100%;
    height: 400px;
    border-radius: 10px; /* Rounded corners for the map */
    overflow: hidden; /* Prevent overflow of the iframe */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Add a shadow for depth */
}

.google-maps iframe {
    width: 100%;
    height: 100%;
    border: 0; /* Remove iframe border */
}

/* Footer Section */
.footer {
    background-color: #1f1f1f; /* Dark gray background */
    color: #ffffff; /* White text for contrast */
    text-align: center;
    padding: 20px 10px;
    margin-top: 30px; /* Add spacing above the footer */
    border-top: 2px solid #ffd700; /* Gold border for a professional look */
}

.footer a {
    color: #ffd700; /* Gold color for links */
    text-decoration: none; /* Remove underline */
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline; /* Add underline on hover */
}

.footer-content p {
    margin: 5px 0; /* Add spacing between lines */
    font-size: 16px; /* Ensure readability */
}

/* Media Queries for Mobile Devices */
@media (max-width: 768px) {
    .contact-section h1 {
        font-size: 28px; /* Reduce heading size */
    }

    .contact-section p {
        font-size: 16px; /* Reduce paragraph font size */
    }

    .google-maps {
        height: 300px; /* Adjust map height for smaller screens */
    }
}

@media (max-width: 480px) {
    .contact-section h1 {
        font-size: 24px; /* Further reduce heading size */
    }

    .contact-section p {
        font-size: 14px; /* Further reduce paragraph font size */
    }

    .google-maps {
        height: 250px; /* Further adjust map height for very small screens */
    }
}