/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

.section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

h2 {
    border-bottom: 2px solid #333;
    display: inline-block;
    margin-bottom: 30px;
}

/* Header & Nav */
header {
    background: #f4f4f4;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo img {
    height: 32px;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.hero-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

/* Map Section */
.map-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* Tenants Grid */
.tenants-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tenant-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tenant-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tenant-logo {
    max-width: 100%;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.tenant-card h3 {
    margin: 10px 0 5px 0;
    font-size: 1.1rem;
}

.tenant-card p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.tenant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

footer a {
    color: #4da6ff;
    text-decoration: none;
}

.footer-content p {
    margin: 5px 0;
}

.copyright {
    margin-top: 20px;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .tenants-grid {
        grid-template-columns: 1fr;
    }

    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        padding: 0;
    }
}
