/* Navigation */
.nav {
    background: white;
    padding: 0.2rem 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-family: serif;
    color: #000;
}

.nav-links {
    display: none; /* Initially hidden for mobile */
}

.nav-link {
    color: #374151;
    text-decoration: none;
    margin: 0 2rem;
    font-weight: 500;
}

.nav-link:hover {
    color: #000;
}

.menu-button {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-button svg {
    width: 24px;
    height: 24px;
    color: #374151;
}

/* Button Styles */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary {
    background-color: #000000; /* Example primary color */
    color: white;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .nav-links {
        display: flex; /* Show links on larger screens */
        align-items: center;
    }

    .menu-button {
        display: none; /* Hide menu button on larger screens */
    }
}

/* About us page */

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}
.content-wrapper {
    padding-top: 60px; /* Adjust based on your navigation height */
    min-height: 100vh; /* Ensure it takes full viewport height */
    box-sizing: border-box; /* Include padding in height calculation */
}
.container {
    max-width: 1200px; /* Increased max-width for larger screens */
    margin: 0 auto; /* Center the container */
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    box-sizing: border-box; /* Include padding in height calculation */
}
h1, h2 {
    color: #007bff;
    margin-bottom: 20px;
    text-align: center;
}
.section {
    margin-bottom: 30px;
}
.features ul, .nearby-list ul {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}
.features li, .nearby-list li {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}
.features li:hover, .nearby-list li:hover {
    transform: translateY(-5px);
}
.location-info p {
    margin-bottom: 10px;
}
.footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    color: #777;
    width: 100%;
}
.highlight {
    color: #007bff;
    font-weight: bold;
}
.image-container {
    text-align: center;
    margin-bottom: 30px;
}
.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}