:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo img {
    height: 100px;
    width: 100px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
}

.logo a span {
    white-space: nowrap;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link:hover {
    color: var(--accent-color);
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 8px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    margin-top: 0.5rem;
}

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

.dropdown-menu ul {
    list-style: none;
    padding: 0.5rem 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.3s;
}

.dropdown-menu a:hover {
    background-color: var(--light-gray);
}

.mega-menu {
    width: 90vw;
    max-width: 1000px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
}

.has-dropdown:hover .mega-menu {
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 1.5rem;
}

.mega-column h3 {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--medium-gray);
}

.nav-cta {
    margin-left: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: #c0392b;
}

.btn-secondary {
    background: var(--accent-color);
    color: var(--white);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.btn-link:hover {
    color: var(--secondary-color);
}

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.hero-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    font-size: 0.9rem;
}

section {
    padding: 4rem 0;
}

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

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

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

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.how-it-works {
    background: var(--light-gray);
}

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

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.areas-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.area-column h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.area-column ul {
    list-style: none;
}

.area-column li {
    margin-bottom: 0.5rem;
}

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

.area-column a:hover {
    color: var(--accent-color);
}

.why-choose-us {
    background: var(--white);
}

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

.benefit {
    text-align: center;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.benefit p {
    color: var(--dark-gray);
}

.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e74c3c 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.cta-section h2 {
    color: var(--white);
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1rem;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-phone {
    margin-top: 1rem;
}

.footer-phone a {
    color: var(--white);
    font-size: 1.2rem;
}

.footer-service {
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

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

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        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-cta {
        margin: 1rem 0 0 0;
    }

    .dropdown-menu,
    .mega-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        width: 100%;
        display: none;
    }

    .has-dropdown.active .dropdown-menu {
        display: block;
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

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

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    section {
        padding: 3rem 0;
    }
}

/* Location Pages Specific Styles */
.breadcrumb {
    margin-bottom: 1rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.location-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: var(--white);
    padding: 4rem 0;
}

.location-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.location-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.location-hero p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    max-width: 900px;
}

.location-details {
    padding: 4rem 0;
}

.location-content {
    max-width: 900px;
    margin: 0 auto;
}

.location-content h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.location-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

.nearby-areas {
    background: var(--light-gray);
    padding: 3rem 0;
    text-align: center;
}

.nearby-areas h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.nearby-links {
    font-size: 1.05rem;
}

.nearby-links a {
    color: var(--accent-color);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.nearby-links a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .location-hero h1 {
        font-size: 1.8rem;
    }

    .location-hero p {
        font-size: 1rem;
    }

    .nearby-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .nearby-links a {
        display: block;
    }
}


/* Service Pages Specific Styles */
.service-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.service-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-details {
    padding: 4rem 0;
}

.service-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: left;
}

.service-content h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.6rem;
    text-align: left;
}

.service-content h4 {
    color: var(--primary-color);
    margin: 1rem 0 0.5rem;
}

.service-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.items-we-take-section {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.items-grid li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

.service-benefits {
    margin: 3rem 0;
}

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

.service-benefits .benefit {
    text-align: center;
    padding: 1rem;
}

.service-areas-cta {
    background: var(--light-gray);
    padding: 3rem 0;
    text-align: center;
}

.popular-areas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.area-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
}

.area-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.related-services {
    padding: 3rem 0;
}

.related-services h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 1.8rem;
    }

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

    .popular-areas {
        flex-direction: column;
        align-items: center;
    }

    .area-link {
        width: 200px;
        text-align: center;
    }
}


/* Location Pages Specific Styles */
.breadcrumb {
    margin-bottom: 1rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.location-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: var(--white);
    padding: 4rem 0;
}

.location-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.location-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.location-hero p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    max-width: 900px;
}

.location-details {
    padding: 4rem 0;
}

.location-content {
    max-width: 900px;
    margin: 0 auto;
}

.location-content h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.location-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

.nearby-areas {
    background: var(--light-gray);
    padding: 3rem 0;
    text-align: center;
}

.nearby-areas h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.nearby-links {
    font-size: 1.05rem;
}

.nearby-links a {
    color: var(--accent-color);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.nearby-links a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .location-hero h1 {
        font-size: 1.8rem;
    }

    .location-hero p {
        font-size: 1rem;
    }

    .nearby-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .nearby-links a {
        display: block;
    }
}


/* Location Pages Specific Styles */
.breadcrumb {
    margin-bottom: 1rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.location-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: var(--white);
    padding: 4rem 0;
}

.location-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.location-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.location-hero p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    max-width: 900px;
}

.location-details {
    padding: 4rem 0;
}

.location-content {
    max-width: 900px;
    margin: 0 auto;
}

.location-content h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.location-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

.nearby-areas {
    background: var(--light-gray);
    padding: 3rem 0;
    text-align: center;
}

.nearby-areas h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.nearby-links {
    font-size: 1.05rem;
}

.nearby-links a {
    color: var(--accent-color);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.nearby-links a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .location-hero h1 {
        font-size: 1.8rem;
    }

    .location-hero p {
        font-size: 1rem;
    }

    .nearby-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .nearby-links a {
        display: block;
    }
}


/* Location Pages Specific Styles */
.breadcrumb {
    margin-bottom: 1rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.location-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: var(--white);
    padding: 4rem 0;
}

.location-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.location-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.location-hero p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    max-width: 900px;
}

.location-details {
    padding: 4rem 0;
}

.location-content {
    max-width: 900px;
    margin: 0 auto;
}

.location-content h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.location-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

.nearby-areas {
    background: var(--light-gray);
    padding: 3rem 0;
    text-align: center;
}

.nearby-areas h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.nearby-links {
    font-size: 1.05rem;
}

.nearby-links a {
    color: var(--accent-color);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.nearby-links a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .location-hero h1 {
        font-size: 1.8rem;
    }

    .location-hero p {
        font-size: 1rem;
    }

    .nearby-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .nearby-links a {
        display: block;
    }
}


/* Location Pages Specific Styles */
.breadcrumb {
    margin-bottom: 1rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.location-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: var(--white);
    padding: 4rem 0;
}

.location-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.location-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.location-hero p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    max-width: 900px;
}

.location-details {
    padding: 4rem 0;
}

.location-content {
    max-width: 900px;
    margin: 0 auto;
}

.location-content h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.location-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

.nearby-areas {
    background: var(--light-gray);
    padding: 3rem 0;
    text-align: center;
}

.nearby-areas h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.nearby-links {
    font-size: 1.05rem;
}

.nearby-links a {
    color: var(--accent-color);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.nearby-links a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .location-hero h1 {
        font-size: 1.8rem;
    }

    .location-hero p {
        font-size: 1rem;
    }

    .nearby-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .nearby-links a {
        display: block;
    }
}


/* Location Pages Specific Styles */
.breadcrumb {
    margin-bottom: 1rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.location-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: var(--white);
    padding: 4rem 0;
}

.location-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.location-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.location-hero p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    max-width: 900px;
}

.location-details {
    padding: 4rem 0;
}

.location-content {
    max-width: 900px;
    margin: 0 auto;
}

.location-content h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.location-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

.nearby-areas {
    background: var(--light-gray);
    padding: 3rem 0;
    text-align: center;
}

.nearby-areas h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.nearby-links {
    font-size: 1.05rem;
}

.nearby-links a {
    color: var(--accent-color);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.nearby-links a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .location-hero h1 {
        font-size: 1.8rem;
    }

    .location-hero p {
        font-size: 1rem;
    }

    .nearby-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .nearby-links a {
        display: block;
    }
}


/* Location Pages Specific Styles */
.breadcrumb {
    margin-bottom: 1rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.location-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: var(--white);
    padding: 4rem 0;
}

.location-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.location-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.location-hero p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    max-width: 900px;
}

.location-details {
    padding: 4rem 0;
}

.location-content {
    max-width: 900px;
    margin: 0 auto;
}

.location-content h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.location-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

.nearby-areas {
    background: var(--light-gray);
    padding: 3rem 0;
    text-align: center;
}

.nearby-areas h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.nearby-links {
    font-size: 1.05rem;
}

.nearby-links a {
    color: var(--accent-color);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.nearby-links a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .location-hero h1 {
        font-size: 1.8rem;
    }

    .location-hero p {
        font-size: 1rem;
    }

    .nearby-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .nearby-links a {
        display: block;
    }
}


/* Location Pages Specific Styles */
.breadcrumb {
    margin-bottom: 1rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.location-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: var(--white);
    padding: 4rem 0;
}

.location-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.location-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.location-hero p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    max-width: 900px;
}

.location-details {
    padding: 4rem 0;
}

.location-content {
    max-width: 900px;
    margin: 0 auto;
}

.location-content h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.location-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

.nearby-areas {
    background: var(--light-gray);
    padding: 3rem 0;
    text-align: center;
}

.nearby-areas h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.nearby-links {
    font-size: 1.05rem;
}

.nearby-links a {
    color: var(--accent-color);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.nearby-links a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .location-hero h1 {
        font-size: 1.8rem;
    }

    .location-hero p {
        font-size: 1rem;
    }

    .nearby-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .nearby-links a {
        display: block;
    }
}
