/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #863C19; /* Warm brown */
    --secondary-color: #1E4125; /* Deep green */
    --accent-color: #F4DEB9; /* Warm cream */
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #f9f9f9;
    --border-radius: 8px;
    --box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    --header-height: 80px;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    padding-top: var(--header-height);
}

/* Header and Navigation */
header {
    background-color: var(--accent-color);
    box-shadow: var(--box-shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .cta-button,
.nav-links .cta-button.secondary {
    max-width: 180px !important;
    min-width: 120px !important;
    font-size: 1rem !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 2rem !important;
    box-shadow: none !important;
    margin: 0 !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 600 !important;
}

.nav-links .cta-button {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    border: 2px solid var(--primary-color) !important;
}

.nav-links .cta-button.secondary {
    background-color: var(--secondary-color) !important;
    color: var(--white) !important;
    border: 2px solid var(--secondary-color) !important;
}

.nav-links .cta-button:hover,
.cta-buttons .cta-button:hover {
    background-color: transparent !important;
    color: var(--primary-color) !important;
}

.nav-links .cta-button.secondary:hover,
.cta-buttons .cta-button.secondary:hover {
    background-color: transparent !important;
    color: var(--secondary-color) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--text-color);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    animation: fadeIn 1s ease-out;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    animation: slideUp 1s ease-out;
}

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

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    font-size: 1.1rem;
    padding: 1.1rem 0;
    border-radius: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    margin: 0 auto;
    max-width: 400px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: scale(1.05);
}

.cta-button.secondary,
.cta-button.secondary:visited,
.cta-button.secondary:active,
.cta-button.secondary:focus {
    background: var(--secondary-color) !important;
    color: var(--white) !important;
    border: 2px solid var(--secondary-color) !important;
    border-radius: 2rem !important;
    box-shadow: none !important;
    outline: none !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    padding: 1.1rem 0 !important;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-buttons .cta-button.secondary:hover {
    background: transparent !important;
    color: var(--secondary-color) !important;
    border: 2px solid var(--secondary-color) !important;
    text-decoration: none !important;
}

/* Gallery Section */
.gallery {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.gallery h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services {
    padding: 4rem 2rem;
    background-color: var(--light-bg);
}

.services h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

/* Reviews Section */
.reviews {
    padding: 6rem 2rem;
    background-color: var(--light-bg);
    position: relative;
}

.reviews h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
}

.reviews h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
}

.reviews-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    animation: scaleIn 1s ease-out;
}

.review-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: serif;
}

.review-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.review-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.rating {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.reviewer {
    font-weight: bold;
    display: block;
    margin-top: 1rem;
}

/* FAQ Section */
.faq {
    padding: 4rem 2rem;
    background-color: var(--light-bg);
}

.faq h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.accordion-item {
    margin-bottom: 1rem;
}

.accordion-header {
    width: 100%;
    padding: 1rem;
    background-color: var(--white);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.accordion-content {
    padding: 1rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    margin-top: 0.5rem;
    display: none;
}

.accordion-content.active {
    display: block;
}

/* CTA Section */
.cta {
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
}

.cta h2 {
    margin-bottom: 1rem;
}

.cta p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .cta-button {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta .cta-button:hover {
    background-color: #f9f9f9;
}

/* Service Overview Section */
.service-overview {
    padding: 4rem 2rem;
    background-color: var(--light-bg);
    text-align: center;
}

.service-overview .container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-overview h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.service-overview p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

@media (max-width: 768px) {
    .service-overview h2 {
        font-size: 2rem;
    }
    
    .service-overview p {
        font-size: 1rem;
    }
}

/* Map Section */
.map-container {
    width: 100%;
    height: 450px;
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

    .gallery-item img {
        height: 250px;
    }

    .logo {
        justify-content: flex-start;
        width: auto;
        margin: 0;
        padding-top: 0.5rem;
    }
    nav {
        padding: 0 1rem;
    }
    .hero {
        min-height: 80vh;
        padding: 2.5rem 1rem 1.5rem 1rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    .hero-content {
        background: rgba(0,0,0,0.45);
        backdrop-filter: blur(6px);
        border-radius: 18px;
        padding: 2rem 1rem 1.5rem 1rem;
        margin-top: 1.5rem;
        box-shadow: 0 8px 32px rgba(0,0,0,0.18);
        animation: fadeIn 1.2s cubic-bezier(0.4,0,0.2,1);
    }
    .hero h1 {
        font-size: 2.1rem;
        margin-bottom: 1.2rem;
        line-height: 1.15;
    }
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-top: 1.2rem;
    }
    .cta-button, .phone-cta, .nav-links .cta-button {
        padding: 1.1rem 0;
        font-size: 1.1rem;
        min-width: unset;
        max-width: 400px;
    }
    .cta-button + .cta-button, .phone-cta + .cta-button {
        margin-top: 0.5rem;
    }
    header {
        background-color: var(--accent-color);
    }
}

/* About Page Styles */
.about-hero {
    background-color: var(--light-bg);
    padding: 4rem 2rem;
    text-align: center;
}

.about-hero h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-content {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 2rem;
}

.about-text ul {
    list-style-position: inside;
    margin-bottom: 2rem;
}

.about-text li {
    margin-bottom: 0.5rem;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    display: block;
}

/* Contact Page Styles */
.contact-hero {
    background-color: var(--light-bg);
    padding: 4rem 2rem;
    text-align: center;
}

.contact-hero h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-content {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.contact-info {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: var(--primary-color);
}

/* Responsive Design for About and Contact Pages */
@media (max-width: 768px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }
}

/* Add animation keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Add animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.phone-cta {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    border: 2px solid var(--primary-color) !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    text-decoration: none !important;
    font-weight: 600;
    border-radius: 2rem;
    max-width: 400px;
    width: 100%;
    padding: 1.1rem 0;
    margin: 0 auto;
    font-size: 1.1rem;
}
.phone-cta:hover {
    background-color: transparent !important;
    color: var(--primary-color) !important;
}
.phone-cta * {
    text-decoration: none !important;
    color: inherit !important;
    font-weight: 400 !important;
}
.phone-icon {
    font-size: 1.2em;
    margin-right: 0.5em;
    display: flex;
    align-items: center;
    height: 1.5em;
    min-width: 1.5em;
    justify-content: center;
}
.call-label {
    margin-right: 0.4em;
}
.phone-number {
    text-decoration: underline !important;
    text-underline-offset: 2px !important;
    font-weight: 700 !important;
    color: inherit !important;
}

/* Desktop header refinement */
@media (min-width: 769px) {
    .nav-links {
        gap: 1.5rem;
    }
    .nav-links .cta-button, .nav-links .cta-button.secondary {
        max-width: 180px;
        min-width: 120px;
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
        border-radius: 2rem;
        box-shadow: none;
        margin: 0;
        height: auto;
    }
    .nav-links .cta-button {
        background-color: var(--primary-color);
        color: var(--white);
        border: 2px solid var(--primary-color);
    }
    .nav-links .cta-button.secondary {
        background-color: var(--secondary-color);
        color: var(--white);
        border: 2px solid var(--secondary-color);
    }
    .nav-links .cta-button:hover {
        background-color: transparent;
        color: var(--primary-color);
    }
    .nav-links .cta-button.secondary:hover {
        background-color: transparent;
        color: var(--secondary-color);
    }
}

.premium-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 1rem 2rem;
    background: #23272a;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -4px 32px rgba(0,0,0,0.10);
    border-top: 1.5px solid #444;
    gap: 2rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.footer-logo {
    height: 105px;
    width: auto;
    border-radius: 12px;
    background: #f9f9f9;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 0.35rem;
}
.footer-company-name {
    font-size: 2rem;
    font-weight: 700;
    color: #f9f9f9;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.footer-contact {
    text-align: right;
}
.footer-contact h3 {
    color: #f9f9f9;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}
.footer-contact p, .footer-contact a {
    color: #f9f9f9;
    font-size: 1.05rem;
    margin: 0.2rem 0;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-contact a:hover {
    color: #f9f9f9;
    text-decoration: underline;
}

.footer-locations {
    text-align: right;
}

.footer-locations h3 {
    color: #f9f9f9;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.footer-locations-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-locations-list li {
    margin: 0.3rem 0;
}

.footer-locations-list a {
    color: #f9f9f9;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    padding: 0.2rem 0;
}

.footer-locations-list a:hover {
    color: #f9f9f9;
    text-decoration: underline;
}
.premium-footer-bottom {
    text-align: center;
    padding: 2rem 0 0.5rem 0;
    background: #23272a;
    color: #f9f9f9;
    font-size: 1rem;
    border-radius: 0 0 18px 18px;
    border-top: 1px solid #333;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
    margin: 0 auto;
    max-width: 1200px;
}
@media (max-width: 800px) {
    .premium-footer {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 1.5rem;
        padding: 2rem 1rem 1rem 1rem;
    }
    .footer-brand {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    .footer-company-name {
        font-size: 1.3rem;
    }
    .footer-contact {
        text-align: left;
        width: 100%;
    }
    .footer-locations {
        text-align: left;
        width: 100%;
    }
    .premium-footer-bottom {
        font-size: 0.95rem;
        padding: 1.2rem 0 0.5rem 0;
    }
}

/* Sitemap Styles */
.sitemap-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #F4DEB9;
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
}

.sitemap-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.sitemap-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.sitemap-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 3rem 2rem;
}

.sitemap-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.sitemap-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sitemap-intro p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.sitemap-links h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 2rem 0 1.5rem 0;
    text-align: center;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.links-grid a {
    display: block;
    padding: 1rem;
    background: #f9f9f9;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.links-grid a:hover {
    background: var(--secondary-color);
    color: #F4DEB9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,100,0,0.2);
}

@media (max-width: 768px) {
    .sitemap-hero h1 {
        font-size: 2rem;
    }
    
    .sitemap-hero p {
        font-size: 1rem;
    }
    
    .sitemap-intro h2 {
        font-size: 2rem;
    }
    
    .sitemap-links h3 {
        font-size: 1.5rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .links-grid a {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
} 