/* Reset and Base Styles - Updated 2025-08-26 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    font-size: 16px; /* Ensures base font size is adequate for mobile */
}

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

/* Header Styles */
.header {
    background-color: #4c8a4c;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo a {
    text-decoration: none;
}

.nav-logo h1 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-logo a:hover h1 {
    color: #7eb87e;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-link:hover,
.nav-link.active {
    color: #7eb87e;
    background-color: rgba(255,255,255,0.1);
}

/* Services link specific styling */
.nav-item.dropdown .nav-link,
.nav-item.dropdown .nav-link.active {
    background-color: #dc3545 !important;
    color: #fff !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    transition: background-color 0.3s ease !important;
}

.nav-item.dropdown .nav-link:hover,
.nav-item.dropdown .nav-link.active:hover {
    background-color: #c82333 !important;
    color: #fff !important;
}

/* Additional specificity for Services button - Force override */
.header .navbar .nav-menu .nav-item.dropdown .nav-link,
.header .navbar .nav-menu .nav-item.dropdown > .nav-link {
    background-color: #dc3545 !important;
    color: #fff !important;
    font-weight: 600 !important;
}

.header .navbar .nav-menu .nav-item.dropdown .nav-link:hover,
.header .navbar .nav-menu .nav-item.dropdown > .nav-link:hover {
    background-color: #c82333 !important;
    color: #fff !important;
}

/* Navigation Buttons */
.nav-quote-btn {
    background-color: #f39c12 !important;
    color: #fff !important;
    border-radius: 4px !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: bold !important;
    font-size: 0.9rem !important;
    transition: background-color 0.3s ease !important;
}

.nav-quote-btn:hover {
    background-color: #e67e22 !important;
}

.nav-call-btn {
    background-color: transparent !important;
    color: #fff !important;
    border: 2px solid #fff !important;
    border-radius: 4px !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: bold !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
}

.nav-call-btn:hover {
    background-color: #fff !important;
    color: #4c8a4c !important;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    border-radius: 8px;
    border: 2px solid #4c8a4c;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu a:hover {
    background-color: #4c8a4c;
    color: #ffffff;
    transform: translateX(5px);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 70px;
    padding: 2rem 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.7), rgba(52, 152, 219, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-quote {
    background-color: #e74c3c;
    padding: 1rem 2rem; /* Same size as call button */
    font-size: 1.1rem; /* Same font size */
}

.cta-quote:hover {
    background-color: #c0392b;
}

.cta-call {
    background-color: #e67e22;
    padding: 1rem 2rem;
}

.cta-call:hover {
    background-color: #d68910;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 4rem auto 0;
    padding: 0 1rem;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.feature::before {
    content: '✈';
    font-size: 3rem;
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.9;
    color: #ffffff;
}

.feature:nth-child(2)::before {
    content: '⚡';
    color: #ffeb3b;
}

.feature:nth-child(3)::before {
    content: '●';
    color: #ff5722;
}

.feature i {
    display: none;
}

.feature h3 {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 2.5rem 0 0 0;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Page Header */
.page-header {
    background-color: #34495e;
    color: #fff;
    padding: 6rem 0 3rem;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Quote Form Section */
.quote-form-section {
    padding: 4rem 0;
    background-color: #fff;
    border-top: 1px solid #e9ecef;
}

.quote-form-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quote-form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.quote-form-header p {
    font-size: 1.2rem;
    color: #666;
}

.quote-form {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.form-row .form-group {
    margin-bottom: 0;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

.learn-more {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.learn-more:hover {
    background-color: #2980b9;
}

/* Why Choose Us Section */
.why-choose {
    padding: 4rem 0;
    background-color: #fff;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-item i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-item p {
    color: #666;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* About Page Styles */
.about-content {
    padding: 4rem 0;
    background-color: #fff;
}

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

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.7;
}

.about-features {
    display: grid;
    gap: 1.5rem;
}

.feature-box {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.feature-box i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.feature-box p {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-content {
    padding: 4rem 0;
    background-color: #fff;
}

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

.contact-info h2,
.contact-form h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-info p {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.7;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #3498db;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-item p {
    color: #666;
    margin: 0;
}

/* Form Styles */
.contact-form {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    background-color: #3498db;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #2980b9;
}

/* Service Areas */
.service-areas {
    padding: 4rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.service-areas h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-areas p {
    margin-bottom: 2rem;
    color: #666;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.area-item {
    background-color: #fff;
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    color: #2c3e50;
    font-weight: 500;
}

/* Service Page Styles */
.service-content {
    padding: 4rem 0;
    background-color: #fff;
}

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

.service-main h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-main h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-main p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.7;
}

.service-main ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-main li {
    margin-bottom: 0.5rem;
    color: #666;
}

.service-sidebar {
    display: grid;
    gap: 2rem;
}

.sidebar-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.sidebar-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
}

.sidebar-card li {
    margin-bottom: 0.5rem;
    color: #666;
    padding-left: 1rem;
    position: relative;
}

.sidebar-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.sidebar-card p {
    margin-bottom: 1rem;
    color: #666;
}

/* Related Services */
.related-services {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.related-services h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.related-services .service-card {
    text-align: left;
    padding: 1.5rem;
}

.related-services .service-card h3 {
    margin-bottom: 1rem;
}

.related-services .service-card h3 a {
    color: #2c3e50;
    text-decoration: none;
}

.related-services .service-card h3 a:hover {
    color: #3498db;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
}

.floating-cta.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.floating-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.6);
}

.floating-cta::before {
    content: '📞';
    font-size: 1.5rem;
}

.floating-cta:active {
    transform: scale(0.95);
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-section p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section i {
    font-size: 1rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #2c3e50;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #ffffff;
        margin-top: 0.5rem;
        border: 1px solid #ddd;
        border-radius: 8px;
    }
    
    .dropdown-menu a {
        color: #4c8a4c !important;
        background-color: transparent !important;
    }


    .hero {
        min-height: 70vh;
        background-attachment: scroll;
        padding: 1rem 0;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .cta-button {
        width: 200px;
        text-align: center;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 3rem auto 0;
        padding: 0 1rem;
    }

    .feature {
        padding: 1.5rem 1rem;
    }

    .feature::before {
        font-size: 2.5rem;
        top: 0.8rem;
    }

    .feature h3 {
        font-size: 1rem;
        margin-top: 2rem;
    }

    .about-grid,
    .contact-grid,
    .service-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

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

    .quote-form {
        padding: 2rem;
    }

    .nav-quote-btn,
    .nav-call-btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
        margin: 0.5rem 0;
        display: block;
        text-align: center;
    }

    .nav-menu {
        padding: 1rem 0;
    }

    .nav-menu .nav-item {
        margin: 0.5rem 0;
    }

    .quote-form-header h2 {
        font-size: 2rem;
    }

    .quote-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 60vh;
        padding: 0.5rem 0;
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem auto 0;
        padding: 0 0.5rem;
    }

    .feature {
        padding: 1.2rem 1rem;
    }

    .feature::before {
        font-size: 2.2rem;
        top: 0.6rem;
    }

    .feature h3 {
        font-size: 0.95rem;
        margin-top: 1.8rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .services h2,
    .why-choose h2,
    .faq h2 {
        font-size: 2rem;
    }

    .quote-form-header h2 {
        font-size: 1.8rem;
    }

    .quote-form {
        padding: 1rem;
    }

    .nav-quote-btn,
    .nav-call-btn {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.75rem !important;
    }

    /* Mobile adjustments for floating CTA */
    .floating-cta {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .floating-cta::before {
        font-size: 1.3rem;
    }
    }

    .nav-logo h1 {
        font-size: 1.2rem;
    }

    .container {
        padding: 0 10px;
    }
}
