/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #1a3a5f;
    --accent: #e67e22;
    --light: #f8f9fa;
    --dark: #2c3e50;
    --text: #333333;
    --transition: all 0.3s ease;
    --container-max-width: min(1200px, 92vw);
    --section-padding: clamp(2rem, 4vw, 4rem);
    --mobile-padding: clamp(1rem, 3vw, 1.5rem);
    --border-radius: 8px;
}

body {
    background-color: #f5f7fa;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: clamp(14px, 1.5vw, 16px);
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: clamp(0.6rem, 1.5vw, 0.8rem) var(--mobile-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 1vw, 0.75rem);
    flex-shrink: 0;
    z-index: 1002;
}

.logo-icon {
    width: clamp(32px, 4vw, 38px);
    height: clamp(32px, 4vw, 38px);
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}

.logo-text {
    font-weight: bold;
    font-size: clamp(0.9rem, 1.8vw, 1.15rem);
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--accent);
    display: block;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background-color: var(--dark);
    margin: 2px 0;
    transition: var(--transition);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Desktop Navigation */
nav {
    transition: var(--transition);
}

nav ul {
    display: flex;
    list-style: none;
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    font-size: clamp(0.85rem, 1.25vw, 0.95rem);
    padding: 0.4rem 0;
    position: relative;
    white-space: nowrap;
}

nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent);
    transition: var(--transition);
}

nav a:hover:after,
nav a:focus:after {
    width: 100%;
}

nav a:hover,
nav a:focus {
    color: var(--accent);
    outline: none;
}

nav a.active {
    color: var(--accent);
    font-weight: 600;
}

nav a.active::after {
    width: 100%;
}

/* CTA Button - Fixed Stretching */
.cta-button {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: clamp(0.5rem, 1.2vw, 0.65rem) clamp(0.8rem, 1.5vw, 1.2rem);
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: clamp(0.85rem, 1.25vw, 0.95rem);
    min-height: 40px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.cta-button:hover,
.cta-button:focus {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
    outline: none;
}

/* Mobile Navigation Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==================== */
/* MOBILE RESPONSIVE STYLES */
/* ==================== */

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    /* Mobile Navigation */
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background-color: white;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
        padding: 5rem 2rem 2rem;
        transition: var(--transition);
        z-index: 999;
        overflow-y: auto;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    nav li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    nav a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        width: 100%;
    }

    nav a:after {
        display: none;
    }

    nav a.active {
        background-color: rgba(230, 126, 34, 0.1);
        color: var(--accent);
        padding-left: 1rem;
        border-radius: 4px;
    }

    /* Hide desktop CTA button in mobile nav */
    .cta-button.mobile-hidden {
        display: none;
    }

    /* Mobile CTA Button in Navigation */
    .mobile-cta-container {
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .mobile-cta-container .cta-button {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        min-height: 50px;
    }
}

/* ==================== */
/* TABLET STYLES */
/* ==================== */

@media (min-width: 769px) and (max-width: 1024px) {
    .header-container {
        gap: 1.5rem;
    }

    nav ul {
        gap: 1rem;
    }

    nav a {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* ==================== */
/* LARGE DESKTOP OPTIMIZATIONS */
/* ==================== */

@media (min-width: 1200px) {
    .header-container {
        padding: 0.8rem 0;
    }
}

/* ==================== */
/* ACCESSIBILITY & TOUCH IMPROVEMENTS */
/* ==================== */

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .cta-button:hover {
        transform: none;
    }
    
    nav a:hover:after {
        width: 0;
    }
    
    nav a:active {
        background-color: rgba(230, 126, 34, 0.1);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
    }
    
    .menu-toggle span {
        transition: none;
    }
}

/* Focus styles for accessibility */
button:focus-visible,
a:focus-visible,
.cta-button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Utility class for mobile CTA */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
    
    .desktop-only {
        display: none;
    }
}


/* Contact Page Specific Styles */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #2c5282 100%);
    color: white;
    padding: 3rem 1rem;
    text-align: center;
}

.page-hero .hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.page-hero p {
    font-size: 1rem;
    opacity: 0.9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Contact Main Section */
.contact-main {
    padding: 3rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.contact-intro {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: var(--light);
    border-radius: 8px;
    transition: var(--transition);
}

.contact-method-item:hover {
    background: rgba(26, 58, 95, 0.05);
    transform: translateX(3px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--primary);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-details p {
    color: var(--text);
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

.contact-social h4 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.contact-social .social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.contact-social .social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--light);
    border-radius: 6px;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-social .social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-1px);
}

/* Contact Form Section */
.contact-form-section {
    background: var(--light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-container h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.flash-messages {
    margin-bottom: 1rem;
}

.flash-message {
    padding: 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.flash-message.success {
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(26, 58, 95, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.form-submit {
    text-align: center;
    margin-top: 0.5rem;
}

.form-submit .cta-button {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

.form-note {
    color: var(--dark);
    font-size: 0.85rem;
    margin-top: 0.75rem;
    opacity: 0.8;
}

/* Map Section */
.map-section {
    padding: 3rem 0;
    background: var(--light);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.section-header h2 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--dark);
    font-size: 1rem;
}

.map-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.map-placeholder {
    height: 300px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 1.5rem;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.map-placeholder h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.map-placeholder p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.map-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.map-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

.map-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* FAQ Section */
.contact-faq {
    padding: 3rem 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.faq-item:hover {
    border-left-color: var(--accent);
    transform: translateX(3px);
    background: white;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.faq-item p {
    color: var(--text);
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Quick Contact CTA */
.quick-contact-cta {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, #2c5282 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.cta-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.quick-contact-methods {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-contact-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.quick-contact-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Enhanced Footer */
.footer {
    background-color: var(--dark);
    color: white;
    padding: clamp(2.5rem, 4vw, 3.5rem) var(--mobile-padding) 1.5rem;
    position: relative;
}

.footer-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
    gap: clamp(1.25rem, 2.5vw, 2rem);
    margin-bottom: 2.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), #d35400);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-icon {
    transform: scale(1.1);
}

.footer-logo-text {
    font-weight: bold;
    font-size: 1.1rem;
    color: white;
}

.footer-tagline {
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 500;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.85rem;
}

.footer-contact h3,
.footer-links h3,
.footer-social h3 {
    margin-bottom: 1.25rem;
    color: white;
    font-size: clamp(1rem, 1.75vw, 1.15rem);
    font-weight: 600;
}

.contact-list {
    list-style: none;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    transition: transform 0.2s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    color: var(--accent);
    margin-top: 0.2rem;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.contact-item:hover i {
    color: #d35400;
}

.contact-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.85rem;
}

.contact-text small {
    font-size: 0.7rem;
    opacity: 0.7;
    display: block;
    margin-top: 0.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: clamp(0.85rem, 1.25vw, 0.95rem);
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--accent);
    transform: translateX(5px);
    outline: none;
}

.footer-links a:hover::after,
.footer-links a:focus::after {
    width: 20px;
}

.social-links {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
    text-decoration: none;
}

.social-link:hover,
.social-link:focus {
    background-color: var(--accent);
    transform: translateY(-3px);
    outline: none;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.newsletter-input {
    padding: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: 2px solid var(--accent);
    background-color: rgba(255, 255, 255, 0.15);
    border-color: transparent;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 0.6rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    min-height: 40px;
}

.newsletter-btn:hover,
.newsletter-btn:focus {
    background-color: #d35400;
    transform: translateY(-2px);
    outline: none;
}

.footer-bottom {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.8rem, 1.25vw, 0.85rem);
}

.footer-legal {
    display: flex;
    gap: clamp(0.8rem, 1.5vw, 1.2rem);
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: clamp(0.8rem, 1.25vw, 0.85rem);
    position: relative;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.footer-legal a:hover,
.footer-legal a:focus {
    color: var(--accent);
    outline: none;
}

.footer-legal a:hover::after,
.footer-legal a:focus::after {
    width: 100%;
}


/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Contact Page */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-social .social-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 2rem 1rem;
    }
    
    .page-hero h1 {
        font-size: 1.75rem;
    }
    
    .contact-main {
        padding: 2rem 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .map-placeholder {
        height: 250px;
        padding: 1.25rem;
    }
    
    .map-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .map-btn {
        width: 180px;
        justify-content: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-contact-btn {
        width: 200px;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .contact-method-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .contact-icon {
        align-self: center;
    }
    
    .contact-form-section {
        padding: 1.25rem;
    }
    
    .map-placeholder i {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .contact-faq,
    .quick-contact-cta,
    .map-section {
        padding: 2rem 0;
    }
    
    .footer {
        padding: 2rem 1rem 1rem;
    }
}