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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1E3A5F;
    line-height: 1.6;
}

/* Header and Navigation */
/* OPTION A: White Background with Dark Text (Recommended) */
header {
    background-color: #ffffff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo-nav {
    height: 50px;
}

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

/* For OPTION A: White Background */
.nav-links a {
    color: #1E3A5F;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #C0392B;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #1E3A5F;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1E3A5F 0%, #2c5282 100%);
    color: #ffffff;
    padding: 6rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
}

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

.hero-accent {
    color: #C0392B;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #1E3A5F;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(192, 57, 43, 0.3);
    margin: 0.5rem;
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 57, 43, 0.4);
}

.cta-secondary {
    background-color: #1E3A5F;
    color: #ffffff;
}

.cta-secondary:hover {
    background-color: #173052;
    color: #ffffff;
}

.cta-white {
    background-color: #ffffff;
    color: #C0392B;
}

.cta-white:hover {
    background-color: #f0f0f0;
    color: #a02f24;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1E3A5F 0%, #2c5282 100%);
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

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

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1E3A5F;
}

/* Services Overview Section */
.services-overview {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

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

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

.service-card p {
    color: #555;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.why-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-item {
    text-align: center;
}

.why-icon {
    font-size: 3rem;
    color: #C0392B;
    margin-bottom: 1rem;
}

.why-item h3 {
    color: #1E3A5F;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.why-item p {
    color: #555;
}

/* Photo Gallery Section */
.photo-gallery {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.gallery-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
}

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

.gallery-item {
    text-align: center;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

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

.gallery-caption {
    padding: 1.5rem;
    color: #1E3A5F;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Reviews Section */
.reviews {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.reviews-source {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

.google-link {
    color: #C0392B;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.google-link:hover {
    color: #a02f24;
    text-decoration: underline;
}

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

.review-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    position: relative;
}

.stars {
    color: #ffa500;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text-container {
    margin-bottom: 1.5rem;
}

.review-text {
    color: #555;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.review-text.expanded {
    /* No changes needed, just shows full text */
}

.read-more-btn {
    background: none;
    border: none;
    color: #C0392B;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.read-more-btn:hover {
    color: #a02f24;
    text-decoration: underline;
}

.read-more-btn.hidden {
    display: none;
}

.reviewer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
}

.reviewer-name {
    font-weight: 600;
    color: #1E3A5F;
}

.review-date {
    color: #888;
    font-size: 0.9rem;
}

.view-all-reviews {
    text-align: center;
    margin-top: 3rem;
}

/* Service Area Section */
.service-area {
    padding: 4rem 2rem;
    background-color: #1E3A5F;
    color: #ffffff;
    text-align: center;
}

.service-area h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-area p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background-color: #C0392B;
    color: #ffffff;
    text-align: center;
}

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

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

/* About Page Styles */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    color: #1E3A5F;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #C0392B;
}

.content-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Content Section Lists */
.content-section ul {
    list-style: disc;
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.content-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.content-section ol {
    list-style: decimal;
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.content-section ol li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

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

.value-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #C0392B;
}

.value-card h3 {
    color: #1E3A5F;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: #555;
    font-size: 1rem;
}

.team-section {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
}

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

.team-photo-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.team-photo-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* Services Page Styles */
.services-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.service-category {
    margin-bottom: 4rem;
}

.category-header {
    background-color: #f8f9fa;
    padding: 2rem;
    border-left: 5px solid #C0392B;
    margin-bottom: 2rem;
}

.category-header h2 {
    color: #1E3A5F;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.category-header p {
    color: #555;
    font-size: 1.1rem;
}

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

.service-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

.service-item h3 {
    color: #1E3A5F;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-item .service-icon {
    color: #C0392B;
    font-size: 1.5rem;
}

.service-item p {
    color: #555;
    line-height: 1.7;
}

.service-item ul {
    margin-top: 1rem;
    margin-left: 1.5rem;
    color: #555;
}

.service-item ul li {
    margin-bottom: 0.5rem;
}

/* Services Featured Gallery */
.services-featured-gallery {
    background: #f8f9fa;
    padding: 4rem 2rem;
    margin-bottom: 4rem;
    border-radius: 10px;
    text-align: center;
}

.services-featured-gallery h2 {
    color: #1E3A5F;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.gallery-description {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
}

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

.services-gallery-item {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    max-width: 400px;
}

.services-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.services-gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.services-gallery-item p {
    padding: 1.5rem;
    color: #1E3A5F;
    font-weight: 600;
    font-size: 1.1rem;
}

/* FAQ Page Styles */
.faq-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.faq-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-intro p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.faq-category {
    margin-bottom: 3rem;
}

.category-title {
    color: #1E3A5F;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #C0392B;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
}

.faq-question {
    background: #f8f9fa;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
    border-left: 4px solid transparent;
}

.faq-question:hover {
    background: #e9ecef;
    border-left-color: #C0392B;
}

.faq-question h3 {
    color: #1E3A5F;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #C0392B;
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer.active {
    max-height: 1000px;
    padding: 1.5rem;
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.faq-answer ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    color: #555;
    margin-bottom: 0.5rem;
}

.contact-cta {
    background-color: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 3rem;
}

.contact-cta h2 {
    color: #1E3A5F;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Contact Page Styles */
.contact-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.contact-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-intro h2 {
    color: #1E3A5F;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

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

.contact-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 3rem;
    color: #C0392B;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    color: #1E3A5F;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-card a {
    color: #C0392B;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #a02f24;
}

.contact-card .highlight {
    color: #C0392B;
    font-weight: 600;
}

.quick-info {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 10px;
    margin-bottom: 4rem;
}

.quick-info h2 {
    color: #1E3A5F;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    color: #C0392B;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.info-content h3 {
    color: #1E3A5F;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #555;
}

/* ========================================
   SERVICE AREAS & CITY LANDING PAGES
   ======================================== */

/* Featured Cities Grid (Service Areas Hub) */
.featured-cities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.featured-city-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #C0392B;
    transition: transform 0.3s, box-shadow 0.3s;
}

.featured-city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.featured-city-card h3 {
    color: #1E3A5F;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    min-height: 3rem;
}

.featured-city-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.city-link {
    display: inline-block;
    color: #C0392B;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: color 0.3s;
}

.city-link:hover {
    color: #a02f24;
    text-decoration: underline;
}

/* Cities by Region (Service Areas Hub) */
.cities-by-region {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.region-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.region-section h3 {
    color: #1E3A5F;
    margin-bottom: 1rem;
    border-bottom: 2px solid #C0392B;
    padding-bottom: 0.5rem;
    font-size: 1.2rem;
    white-space: nowrap;
}

.cities-list {
    list-style: none;
    padding: 0;
    column-count: 1;
    column-gap: 1rem;
}

.cities-list li {
    padding: 0.3rem 0;
    color: #555;
    break-inside: avoid;
    font-size: 0.95rem;
}

.cities-list li::before {
    content: "📍 ";
    margin-right: 0.5rem;
}

/* City Page Specific Styles */
.city-page .content-section {
    margin-bottom: 3rem;
}

/* Benefits Grid (Individual City Pages) */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #C0392B;
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item h3 {
    color: #1E3A5F;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.benefit-item p {
    color: #555;
    line-height: 1.7;
}

/* Neighborhoods Grid (Individual City Pages) */
.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.neighborhood-column {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #C0392B;
}

.neighborhood-column h4 {
    color: #1E3A5F;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-bottom: 2px solid #C0392B;
    padding-bottom: 0.5rem;
}

.neighborhood-column ul {
    list-style: none;
    padding: 0;
}

.neighborhood-column li {
    padding: 0.4rem 0;
    color: #555;
}

.neighborhood-column li::before {
    content: "📍 ";
    margin-right: 0.5rem;
}

/* Routes List (Individual City Pages) */
.routes-list {
    list-style: none;
    padding: 0;
}

.routes-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: #f8f9fa;
    border-left: 4px solid #C0392B;
    border-radius: 4px;
}

.routes-list strong {
    color: #1E3A5F;
    display: block;
    margin-bottom: 0.5rem;
}

/* Local Expertise Section (Individual City Pages) */
.local-expertise {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.expertise-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.expertise-item h4 {
    color: #1E3A5F;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.expertise-item p {
    color: #555;
    line-height: 1.7;
}

/* Footer */
footer {
    background-color: #1E3A5F;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
}

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

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

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

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

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

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        padding: 1rem 2rem;
        gap: 1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

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

    .mobile-menu-btn {
        display: block;
    }

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

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

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

    .page-header p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-button {
        display: block;
        margin: 0.5rem auto;
    }

    .main-content {
        padding: 3rem 1.5rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .services-section {
        padding: 3rem 1.5rem;
    }

    .category-header h2 {
        font-size: 1.5rem;
    }

    .faq-section {
        padding: 3rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .contact-section {
        padding: 3rem 1.5rem;
    }

    .service-area h2 {
        font-size: 2rem;
    }

    .services-gallery-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .services-gallery-item {
        max-width: 100%;
    }

    .featured-cities {
        grid-template-columns: 1fr;
    }
    
    .cities-by-region {
        grid-template-columns: 1fr;
    }
    
    .cities-list {
        column-count: 1;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .neighborhoods-grid {
        grid-template-columns: 1fr;
    }

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

/* Tablet view - 2 columns */
@media (min-width: 769px) and (max-width: 1024px) {
    .featured-cities {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cities-by-region {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
