/* Global Styles */
:root {
    --primary-color: #f6b728; /* More vibrant yellow */
    --secondary-color: #2c3e50; /* Deeper blue-gray for better contrast */
    --light-color: #f9f9f9;
    --dark-color: #1a1a1a;
    --accent-color: #e74c3c; /* Red accent for important elements */
    --text-color: #333333;
    --border-color: #dddddd;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --header-height: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px); /* Increased padding for better experience */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

.button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

.button:hover:before {
    left: 0;
}

.button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Header Styles */
header {
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
    height: auto;
    min-height: var(--header-height);
    transition: all 0.3s ease;
    width: 100%;
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    min-height: auto;
}

header h1 {
    font-size: 2.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

header p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--light-color);
}

nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

nav a {
    padding: 8px 15px;
    color: var(--light-color);
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav a:hover:after {
    width: 100%;
}

nav a:hover {
    background-color: transparent;
    color: var(--primary-color);
}

nav a.active {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

/* Hero Section */
.hero {
    padding: 120px 20px 80px;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1568605117036-5fe5e7bab0b7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    margin-bottom: 40px;
    position: relative;
}

.hero:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, var(--light-color), transparent);
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
}

.hero .button {
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.features {
    padding: 80px 20px 60px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.features:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.features h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background-color: white;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature:hover i {
    transform: scale(1.2);
}

.feature h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    padding: 70px 20px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1584917865442-de89df76afd3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.cta p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta .button {
    background-color: var(--dark-color);
    color: var(--primary-color);
}

.cta .button:hover {
    background-color: var(--light-color);
    color: var(--dark-color);
}

/* Services Page */
.service-details {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.service-details h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.service-details h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.service-item-detail {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-left: 5px solid var(--primary-color);
}

.service-item-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item-detail h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}

.service-item-detail h3 i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.8rem;
}

.service-item-detail p {
    margin-bottom: 25px;
    color: var(--text-color);
    line-height: 1.7;
}

.service-item-detail .button {
    margin-top: 10px;
}

/* About Page */
.about-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.about-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.about-content h2 {
    color: var(--secondary-color);
    margin: 30px 0 20px;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

.about-content h2:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.about-content p {
    margin-bottom: 25px;
    line-height: 1.7;
}

.about-content ul {
    margin-left: 20px;
    margin-bottom: 25px;
}

.about-content li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 5px;
}

.about-content li strong {
    color: var(--secondary-color);
}

/* Contact Page */
.contact-info {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.contact-info h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.contact-info h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-method {
    text-align: center;
    padding: 35px 25px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.contact-method:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.contact-method i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.contact-method:hover i {
    transform: scale(1.1);
}

.contact-method h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.contact-method a {
    font-weight: 500;
}

form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

form:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--secondary-color);
}

form input,
form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    transition: all 0.3s ease;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(246, 183, 40, 0.2);
}

form button {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: none;
    padding: 14px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

form button:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

/* Taxi Companies Page */
.services {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.services h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.services h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.company-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.filter-button {
    background-color: #f8f9fa;
    color: #495057;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-button:hover, 
.filter-button.active {
    background-color: var(--primary-color);
    color: white;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-top: 5px solid transparent;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-top-color: var(--primary-color);
}

.service-item h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-item p {
    margin-bottom: 12px;
    color: var(--text-color);
}

.service-item p strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.star-rating {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.stars {
    color: var(--primary-color);
    margin-right: 12px;
}

.rating-value {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.service-contact {
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-contact:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.service-contact i {
    margin-right: 8px;
}

.featured-tag {
    position: absolute;
    top: 0;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 8px 15px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Privacy and Imprint Pages */
.privacy-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.privacy-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.privacy-content h2 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 2rem;
}

.privacy-content h3 {
    color: var(--secondary-color);
    margin: 30px 0 15px;
    font-size: 1.5rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

.privacy-content p, 
.privacy-content ul {
    margin-bottom: 20px;
    line-height: 1.7;
}

.privacy-content ul {
    margin-left: 25px;
}

.privacy-content li {
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 50px 20px 30px;
    margin-top: 80px;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--primary-color));
}

footer p {
    margin-bottom: 20px;
}

footer a {
    color: var(--primary-color);
    margin: 0 12px;
    font-weight: 500;
    transition: color 0.3s;
}

footer a:hover {
    color: white;
    text-decoration: none;
}

.footer-links {
    margin: 20px 0;
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-5px);
}

/* Mobile Menu Styles - Fixed */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.burger-bar {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.open .burger-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.open .burger-bar:nth-child(2) {
    opacity: 0;
}

.open .burger-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Fix overlay to cover entire screen */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
    /* Header adjustments */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 15px 20px;
        z-index: 997;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-height: auto;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }
    
    header h1 {
        margin-bottom: 5px;
    }
    
    header p {
        margin-bottom: 0;
    }
    
    /* Adjust body padding to prevent content from being hidden under fixed header */
    body {
        padding-top: 100px;
    }
    
    /* Burger menu styling */
    .burger-menu {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
    }
    
    .burger-bar {
        background-color: white;
        height: 3px;
        margin: 3px 0;
    }
    
    /* Mobile navigation styling */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100%;
        background-color: white;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 80px 20px 30px;
        transition: right 0.3s ease-in-out;
        z-index: 999;
        gap: 0;
        overflow-y: auto;
    }
    
    nav.active {
        right: 0;
    }
    
    nav a {
        padding: 15px;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
        margin: 0;
        color: var(--secondary-color);
        font-size: 16px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    nav a:after {
        display: none;
    }
    
    nav a:hover, nav a.active {
        background-color: #f8f9fa;
        color: var(--primary-color);
    }
    
    /* Prevent scrolling when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Fix content spacing */
    .hero, 
    .features, 
    .service-details,
    .about-content,
    .privacy-content,
    .contact-info {
        margin-top: 0;
        padding-top: 30px;
    }
    
    /* Fix disclaimer positioning */
    .disclaimer {
        margin: 20px;
        width: auto;
    }
    
    /* Typography adjustments */
    header h1 {
        font-size: 1.8rem;
    }
    
    header p {
        font-size: 0.95rem;
    }
    
    /* Hero section adjustments */
    .hero {
        padding: 60px 20px 80px;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
        max-width: 100%;
    }
    
    /* Grid layouts for mobile */
    .feature-grid,
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Form adjustments */
    form {
        padding: 25px;
    }
    
    form input, 
    form textarea {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    form button {
        padding: 12px 25px;
    }
    
    /* Service items */
    .service-item {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .service-item h3 {
        font-size: 1.3rem;
    }
    
    .service-contact {
        padding: 12px 20px;
    }
    
    /* Make all buttons more tappable on mobile */
    .button,
    form button,
    .filter-button,
    .service-contact,
    .footer-links a {
        padding: 12px 25px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Company filters */
    .company-filters {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .filter-button {
        width: 100%;
        max-width: 250px;
    }
    
    /* Footer adjustments */
    footer {
        padding: 30px 20px;
        text-align: center;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin: 15px 0;
    }
    
    .footer-links a {
        padding: 10px;
    }
    
    /* Fix for star ratings on small screens */
    .star-rating {
        flex-wrap: wrap;
    }
    
    /* Ensure content doesn't overflow on mobile */
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    body {
        padding-top: 100px;
    }
    
    header h1 {
        font-size: 1.6rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .features h2,
    .service-details h2,
    .contact-info h2,
    .services h2 {
        font-size: 1.8rem;
    }
    
    .service-item-detail h3,
    .service-item h3 {
        font-size: 1.3rem;
    }
    
    /* Adjust spacing for sitemap */
    .sitemap-section {
        margin-bottom: 30px;
    }
    
    .sitemap-list li {
        margin-bottom: 15px;
    }
    
    /* Improve readability */
    p, li {
        font-size: 16px;
        line-height: 1.6;
    }
}

/* Accessibility */
:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Disclaimer styles */
.disclaimer {
    margin: 30px auto;
    max-width: 1000px;
    padding: 20px;
    background-color: #fff3cd;
    border-left: 5px solid var(--primary-color);
    color: var(--dark-color);
    border-radius: 5px;
    line-height: 1.7;
}
