:root {
    --primary-color: #FACC15;   /* Premium Taksi Sarısı */
    --secondary-color: #0F172A; /* Koyu Lacivert-Siyah */
    --background-color: #0B0E14; /* Premium koyu arka plan */
    --text-color: #E5E7EB;      /* Açık yazı rengi */
    --accent-color: #F59E0B;    /* Altın vurgular */
}


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

body {
    background-color: var(--background-color);
    color: var(--text-color);
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(45deg);
}

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

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(107, 70, 193, 0.2), rgba(0,0,0,0.4));
    z-index: 1;
}

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

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

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

/* Hero Buttons */
.hero-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.primary-button, .secondary-button {
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.primary-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.secondary-button {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-button:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Vehicles Section */
.vehicles {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.vehicles h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.vehicle-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.vehicle-images {
    position: relative;
}

.main-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.thumbnail-container {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    margin: 0.5rem;
}

.thumbnail-buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.thumbnail-buttons img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail-buttons img:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.thumbnail-buttons img.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(107, 70, 193, 0.4);
}

/* Navigation Buttons */
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 2100;
}

.modal-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.vehicle-info {
    padding: 1.5rem;
}

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

.price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--accent-color);
    margin: 1rem 0;
}

.contact-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--accent-color);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem 5%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}

/* About Section */
.about {
    padding: 6rem 5%;
    background-color: white;
    position: relative;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

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

.about-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Features Section */
.features {
    padding: 4rem 5%;
    background-color: white;
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.features h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.feature-card {
    padding: 2rem;
    background: var(--background-color);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 60px;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(107, 70, 193, 0.2), rgba(0,0,0,0.4));
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

/* About Page */
.about-page {
    padding: 4rem 5%;
    background-color: white;
}

.about-values {
    margin-top: 4rem;
}

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

.value-card {
    padding: 2rem;
    background: var(--background-color);
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .feature-grid, .values-grid {
        grid-template-columns: 1fr;
    }

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

/* Vehicle Detail Page */
.vehicle-detail {
    padding: 6rem 5% 4rem;
    background-color: var(--background-color);
}

.detail-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.detail-images {
    position: sticky;
    top: 100px;
    align-self: start;
}

.main-detail-image {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.main-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}

.detail-thumbnails img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.detail-thumbnails img:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.detail-thumbnails img.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(107, 70, 193, 0.4);
}

.detail-info {
    padding: 1rem;
}

.detail-info h1 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    background: rgba(107, 70, 193, 0.1);
    border-radius: 5px;
    display: inline-block;
}

.technical-specs, .seller-notes, .features, .contact-info {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--background-color);
    border-radius: 10px;
}

.technical-specs h2, .seller-notes h2, .features h2, .contact-info h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.technical-specs ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.technical-specs li {
    padding: 0.5rem;
    background: white;
    border-radius: 5px;
}

.seller-notes p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
}

.features li {
    padding: 0.5rem;
    background: white;
    border-radius: 5px;
    color: var(--primary-color);
}

.call-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.call-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .detail-container {
        grid-template-columns: 1fr;
    }

    .detail-images {
        position: static;
    }
}

@media (max-width: 768px) {
    .technical-specs ul, .features ul {
        grid-template-columns: 1fr;
    }
}

/* Detay Sayfası Fotoğraf Galerisi */
.detail-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.main-detail-image {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.main-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-detail-image img:hover {
    transform: scale(1.05);
}

.detail-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.detail-thumb {
    flex: 0 0 100px;
    height: 75px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.detail-thumb.active {
    opacity: 1;
    border-color: var(--primary-color);
}

.detail-thumb:hover {
    opacity: 1;
}

.detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modal Görüntüleyici */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    height: 80vh;
}

.modal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: -30px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 5px;
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .main-detail-image {
        height: 300px;
    }

    .detail-thumb {
        flex: 0 0 80px;
        height: 60px;
    }

    .modal-content {
        width: 95%;
        height: 70vh;
    }

    .modal-nav {
        padding: 15px;
        font-size: 24px;
    }
}
/* Sabit İletişim Butonları */
.contact-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.call-button,
.whatsapp-button {
    text-decoration: none;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    text-align: center;
    min-width: 160px;
}

/* Telefon Butonu */
.call-button {
    background-color: #007bff;
}

/* WhatsApp Butonu */
.whatsapp-button {
    background-color: #25D366;
}
/* Taksi Logosu */
.taxi-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
/* Header arka planı siyah yap */
header {
    background-color: black;
}

.logo {
    color: #FFD700;
}

nav ul li a {
    color: white;
}

nav ul li a:hover {
    color: #FFD700;
}

/* Butonları taksi stiline uygun yap */
.primary-button {
    background-color: #FFD700;
    color: black;
    font-weight: bold;
}

.secondary-button:hover {
    color: black;
}

/* Footer koyu yap */
footer {
    background-color: black;
}

.footer-info h3 {
    color: #FFD700;
}
/* Dengeli Taksi Teması (Okunabilir) */
:root {
    --primary-color: #FFC107;   /* Dengeli sarı */
    --accent-color: #FF9800;    /* Turuncuya yakın sarı */
    --text-color: #222222;
    --background-color: #F7F7F7;
}

/* Siyah zemin üzeri yazılar */
header {
    background-color: #000000;
}

nav ul li a {
    color: #ffffff;
}

nav ul li a:hover {
    color: #FFC107;
}

.logo {
    color: #FFC107;
}

/* Açık zemin yazıları */
p, li, span {
    color: #333333;
}

/* Buton yazıları */
.primary-button {
    color: #000000;
    font-weight: bold;
}
/* === PREMIUM TAXI THEME === */

body {
    background-color: var(--background-color);
    color: var(--text-color);
}

header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
}

.logo {
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: 1px;
}

nav ul li a {
    color: #CBD5F5;
    position: relative;
}

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

nav ul li a:hover::after {
    width: 100%;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.85)), url('images/hero-bg.jpg');
}

.hero-content h1 {
    color: #FACC15;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content p {
    color: #E5E7EB;
}

.primary-button {
    background: linear-gradient(135deg, #FACC15, #F59E0B);
    color: #0B0E14;
    font-weight: bold;
    border: none;
    box-shadow: 0 10px 30px rgba(250, 204, 21, 0.25);
}

.secondary-button {
    border: 2px solid #FACC15;
    color: #FACC15;
}

.secondary-button:hover {
    background: #FACC15;
    color: #0B0E14;
}

/* Kartlar */
.vehicle-card,
.feature-card,
.value-card {
    background: #121826;
    border: 1px solid rgba(250, 204, 21, 0.08);
}

.vehicle-info h3,
.feature-card h3,
.value-card h3 {
    color: #FACC15;
}

/* Footer */
footer {
    background: #020617;
    color: #94A3B8;
}

.footer-info h3 {
    color: #FACC15;
}
/* Hero arka plan fotoğraf düzeltmesi */
.hero {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* Sayfa başlığı görseli için */
.page-header {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}
/* Neden Biz ve Değerlerimiz kutu arka planlarını düzelt */
.feature-card,
.value-card {
    background-color: #FFFFFF !important;   /* Beyaz arka plan */
    color: #000000;                         /* Yazılar siyah */
}
/* Neden Biz / Değerlerimiz kutuları için yumuşak arka plan */
.feature-card,
.value-card {
    background-color: #1E293B !important;  /* Yumuşak koyu gri-mavi */
    color: #E5E7EB;                        /* Açık gri yazı */
}

/* Footer üst arka plan yumuşatma */
footer {
    background-color: #020617 !important;
}
/* Kutu içindeki yazılar (Neden Biz / Değerlerimiz) */
.feature-card h3,
.feature-card p,
.value-card h3,
.value-card p {
    color: #FACC15 !important;   /* Premium sarı */
}

/* Footer yazıları (telefon, adres, 2025 yazıları) */
.footer-info p,
.footer-bottom p,
.footer-info h3 {
    color: #FACC15 !important;
}
/* Araçlarımız başlığı */
.vehicles h2,
.page-header h1 {
    color: #FACC15 !important;  /* Premium taksi sarısı */
}

/* Hakkımızda başlığı */
.about h2,
.about-page h1 {
    color: #FACC15 !important;
}
/* "Kampüs Taksi'yi Yakından Tanıyın" yazısı */
.about h2,
.page-header p {
    color: #ffffff !important;
}

/* "Sizin için özenle seçtiğimiz kaliteli taksilerimiz" yazısı */
.vehicles p {
    color: #ffffff !important;
}
/* Araç detay sayfası – fotoğraf solda, bilgiler sağda */
.detail-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* Sol taraf – fotoğraflar */
.detail-images {
    flex: 1;
    max-width: 50%;
}

/* Sağ taraf – araç bilgileri */
.detail-info {
    flex: 1;
    max-width: 50%;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .detail-container {
        flex-direction: column;
    }

    .detail-images,
    .detail-info {
        max-width: 100%;
    }
}
/* Mobilde navbar içerik üstünü kapatmasın */
@media (max-width: 768px) {
    body {
        margin-top: 120px !important;
    }

    header {
        height: auto;
    }

    nav {
        flex-direction: column;
        gap: 10px;
        padding: 15px 0;
    }
}
.footer-phone {
    color: inherit;
    text-decoration: none;
    font-weight: bold;
}

.footer-phone:hover {
    text-decoration: underline;
}
.google-review-button {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 16px;
    background-color: #fbbc04;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.google-review-button:hover {
    background-color: #e0a800;
}
.google-rating {
    text-align: center;
    margin: 25px 0;
    font-size: 18px;
    font-weight: bold;
}

.google-rating a {
    color: #fbbc04;
    text-decoration: none;
}

.google-rating a:hover {
    text-decoration: underline;
}
.service-areas {
    background: #f9f9f9;
    padding: 30px 15px;
    margin-top: 30px;
}

.service-areas h2 {
    text-align: center;
    margin-bottom: 20px;
}

.service-areas ul {
    max-width: 600px;
    margin: auto;
    list-style: none;
    padding: 0;
}

.service-areas li {
    padding: 8px 0;
    font-size: 16px;
}