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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rubik', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Navigation */
.navbar {
    background-color: #2c3e50;
    color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    flex: 1;
    text-decoration: none;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    max-height: 42px;
}

.logo-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: block;
}

.logo-text-block {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-name {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: #ffffff;
}

.logo-name span {
    color: #f9a825;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 5px;
}

.tagline {
    font-size: 10px;
    color: #90a4ae;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 4px;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #3498db;
    border-bottom-color: #3498db;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: #f39c12;
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Services Preview */
.services-preview {
    margin-bottom: 60px;
}

.services-preview h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 10px;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #3498db;
}

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

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-card p {
    color: #666;
    margin-bottom: 15px;
}

.service-card a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-card a:hover {
    color: #2980b9;
}

/* Why Choose Us */
.why-us {
    background: #ecf0f1;
    padding: 50px 20px;
    margin-bottom: 40px;
    border-radius: 8px;
}

.why-us h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.benefit-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-right: 4px solid #f39c12;
}

.benefit-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.benefit-item p {
    color: #666;
    font-size: 15px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 40px;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.primary-btn {
    background-color: #f39c12;
    color: white;
}

.primary-btn:hover {
    background-color: #e67e22;
}

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

.secondary-btn:hover {
    background-color: rgba(255,255,255,0.2);
}

/* Service Sections */
.service-section {
    background: white;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
}

.service-section h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #34495e;
}

.intro-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.issues-list,
.solutions-list {
    list-style-position: inside;
    margin-left: 20px;
    margin-bottom: 20px;
}

.issues-list li,
.solutions-list li {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.6;
}

.service-guarantee {
    background: #e8f8f5;
    padding: 15px;
    border-right: 4px solid #27ae60;
    margin-top: 25px;
    border-radius: 4px;
    color: #27ae60;
    font-weight: 600;
}

/* Pest Information */
.pest-info {
    background: white;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.pest-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
    border-bottom: 3px solid #e74c3c;
    padding-bottom: 10px;
}

.pest-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .pest-details {
        grid-template-columns: 1fr;
    }
}

.pest-description,
.pest-action {
    line-height: 1.8;
}

.pest-description h3,
.pest-action h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #34495e;
}

.pest-description h3:first-child,
.pest-action h3:first-child {
    margin-top: 0;
}

.pest-signs,
.health-risks,
.treatment-methods {
    list-style-position: inside;
    margin-left: 20px;
    margin-bottom: 15px;
}

.pest-signs li,
.health-risks li,
.treatment-methods li {
    margin-bottom: 10px;
    color: #555;
}

.service-link {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.service-link:hover {
    background-color: #2980b9;
}

/* Contact Information */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.info-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    border-top: 4px solid #3498db;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-item p {
    color: #666;
    margin-bottom: 5px;
}

/* Contact Form */
.contact-form-section {
    background: white;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-form-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-form-section > p {
    color: #666;
    margin-bottom: 30px;
}

.contact-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input[type="checkbox"] {
    width: auto;
    margin-left: 10px;
}

.form-group.checkbox label {
    margin-bottom: 0;
    margin-right: 10px;
}

.submit-btn {
    background-color: #3498db;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

/* Response Times */
.response-times {
    background: #ecf0f1;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.response-times h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.time-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
    text-align: center;
}

.time-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.time-item p {
    color: #666;
    font-weight: 600;
}

/* About Section */
.about-section {
    background: white;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.mission-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mission-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.mission-item p {
    color: rgba(255,255,255,0.95);
}

.why-choose-list {
    list-style-position: inside;
    margin-left: 20px;
}

.why-choose-list li {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.6;
}

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

.cert-item {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cert-item h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.cert-item p {
    color: rgba(255,255,255,0.95);
    font-size: 14px;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.blog-card h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card h3 a:hover {
    color: #3498db;
}

.blog-date {
    color: #999;
    font-size: 14px;
    margin-bottom: 12px;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: #2980b9;
}

/* Blog Post */
.blog-post {
    margin-bottom: 40px;
}

.blog-post article {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.blog-post-header {
    margin-bottom: 30px;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 20px;
}

.blog-post-header h1 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.blog-meta {
    color: #999;
    font-size: 14px;
}

.blog-meta span {
    margin-right: 20px;
}

.blog-post-content {
    line-height: 1.9;
    color: #444;
}

.blog-post-content p {
    margin-bottom: 16px;
}

.blog-post-content h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.blog-post-content h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #34495e;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-left: 25px;
    margin-bottom: 16px;
}

.blog-post-content li {
    margin-bottom: 10px;
}

.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.cta-box h3 {
    margin-bottom: 10px;
    color: white;
}

.cta-box p {
    margin: 0;
}

.cta-box a {
    color: #f39c12;
    font-weight: 600;
}

.related-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 50px 20px 20px;
    margin-top: 60px;
}

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

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #3498db;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

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

.footer-section ul a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #7f8c8d;
}

.legal-links {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
}

.legal-links a {
    color: #bdc3c7;
    text-decoration: none;
}

.legal-links a:hover {
    color: #3498db;
}

.cookie-consent {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    background: #1f2933;
    color: #f8fafc;
    border-radius: 12px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.25);
    padding: 16px;
    transform: translateY(24px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.cookie-consent.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-consent__content {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
}

.cookie-consent__content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-consent__content a {
    color: #7dd3fc;
}

.cookie-consent__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-btn {
    border: none;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    cursor: pointer;
}

.cookie-btn--primary {
    background: #0ea5e9;
    color: #fff;
}

.cookie-btn--secondary {
    background: #334155;
    color: #f8fafc;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        gap: 15px;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .services-preview h2,
    .why-us h2 {
        font-size: 28px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .pest-details {
        grid-template-columns: 1fr;
    }

    .blog-post article {
        padding: 20px;
    }

    .blog-post-header h1 {
        font-size: 26px;
    }

    .cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-consent__content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent__actions {
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* Location Cards */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.location-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-right: 4px solid #3498db;
    transition: transform 0.3s, box-shadow 0.3s;
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.location-card h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 20px;
}

.location-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 14px;
}

.location-link {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 15px;
    border: 2px solid #3498db;
    border-radius: 4px;
    transition: all 0.3s;
}

.location-link:hover {
    background-color: #3498db;
    color: white;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.feature {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature p {
    font-size: 14px;
    color: rgba(255,255,255,0.95);
    line-height: 1.6;
}

.features-section {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.features-section h2 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 25px;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
}

/* FAQ Items */
.faq-item {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 18px;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-intro {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
}

.testimonials-intro h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: white;
}

.testimonials-intro p {
    font-size: 16px;
    color: #f0f0f0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.testimonial {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-top: 4px solid #3498db;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.testimonial-header {
    margin-bottom: 15px;
}

.testimonial-header h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.stars {
    font-size: 16px;
    color: #f39c12;
}

.testimonial-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial-date {
    font-size: 13px;
    color: #999;
}

.testimonials-stats {
    background: #f5f5f5;
    padding: 40px 0;
    margin: 40px 0;
    border-radius: 10px;
}

.testimonials-stats h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: #2c3e50;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat {
    background: white;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.stat h3 {
    font-size: 32px;
    color: #3498db;
    margin-bottom: 10px;
}

.stat p {
    color: #666;
    font-size: 14px;
}

.content-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
}

.content-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.content-section p {
    font-size: 16px;
    margin-bottom: 20px;
}

.content-section .cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.content-section .cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .testimonials-intro {
        padding: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .content-section {
        padding: 25px;
        margin: 30px 0;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 22px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .service-cards,
    .benefits-grid,
    .locations-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
    }

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

    .testimonials-intro h2 {
        font-size: 22px;
    }

    .stat h3 {
        font-size: 28px;
    }
}
