/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.25rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: #15803d;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #16a34a;
    border: 2px solid #16a34a;
}

.btn-secondary:hover {
    background-color: #16a34a;
    color: white;
}

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

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
}

.logo-text {
    font-weight: 600;
    font-size: 18px;
    color: #16a34a;
}

/* Navigation - Mobile First */
.nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.nav.active {
    display: block;
}

.nav-list {
    list-style: none;
    flex-direction: column;
    display: flex;
}

.nav-link {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #f3f4f6;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #16a34a;
}

/* Header Phone */
.header-phone {
    display: none;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #16a34a;
    font-weight: 500;
    padding: 8px 16px;
    border: 2px solid #16a34a;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.phone-link:hover {
    background-color: #16a34a;
    color: white;
}

.phone-icon {
    font-size: 18px;
}

.call-text {
    font-size: 14px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%2316a34a" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(45deg, #dc2626, #ea580c);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    align-items: center;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
}

.feature-icon {
    color: #16a34a;
    font-weight: 600;
}

/* Sections */
.section-title {
    text-align: center;
    color: #1f2937;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.intro-text {
    text-align: center;
    margin-top: 20px;
    color: #6b7280;
    font-size: 1.1rem;
}

/* Contact Hero Form */
.contact-hero {
    padding: 60px 0;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.hero-contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* Prevention Tips Section */
.prevention-tips {
    padding: 80px 0;
    background: white;
}

.tips-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
}

.tips-image {
    text-align: center;
}

.coupon-badge {
    background: linear-gradient(45deg, #dc2626, #ea580c);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 200px;
    margin: 0 auto;
}

.coupon-text {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.coupon-subtext {
    font-size: 1rem;
    opacity: 0.9;
}

.treatment-visual {
    text-align: center;
    background: #f9fafb;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    max-width: 400px;
    margin: 0 auto;
}

.exterminator-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.treatment-caption {
    color: #374151;
    font-weight: 500;
    margin: 0;
}

.guarantee-icon-svg {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.guarantee-icon-svg svg {
    max-width: 80px;
    height: auto;
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.tip-item {
    background: #f9fafb;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #16a34a;
}

.tip-item h3 {
    color: #1f2937;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.tip-item p {
    color: #6b7280;
    line-height: 1.6;
}

.tips-conclusion {
    text-align: center;
    font-size: 1.1rem;
    color: #374151;
    font-weight: 500;
    margin-bottom: 30px;
}

.exterminator-image {
    text-align: center;
    margin-top: 30px;
}

/* Control Methods Section */
.control-methods {
    padding: 80px 0;
    background: #f9fafb;
}

.methods-table, .cost-table, .pest-table {
    overflow-x: auto;
    margin-bottom: 30px;
}

.methods-table table, .cost-table table, .pest-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.methods-table th, .methods-table td,
.cost-table th, .cost-table td,
.pest-table th, .pest-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.methods-table th, .cost-table th, .pest-table th {
    background: #16a34a;
    color: white;
    font-weight: 600;
}

.methods-table td, .cost-table td, .pest-table td {
    color: #374151;
}

.quote-cta {
    text-align: center;
    margin-top: 30px;
}

/* Cost Section */
.cost-section {
    padding: 80px 0;
    background: white;
}

/* Key Considerations Section */
.key-considerations {
    padding: 80px 0;
    background: #f9fafb;
}

.considerations-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.consideration-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.consideration-item h3 {
    color: #16a34a;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.consideration-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* GTA Pests Section */
.gta-pests {
    padding: 80px 0;
    background: white;
}

.risk-high {
    background: #dc2626;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.risk-moderate {
    background: #f59e0b;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.risk-severe {
    background: #7c2d12;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Case Studies Section */
.case-studies {
    padding: 80px 0;
    background: #f9fafb;
}

.case-study {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #e5e7eb;
}

.case-title {
    color: #16a34a;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.case-study p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Guarantees Section */
.guarantees {
    padding: 80px 0;
    background: white;
}

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

.guarantee-item {
    background: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.guarantee-icon {
    margin-bottom: 20px;
}

.guarantee-icon img {
    max-width: 80px;
    height: auto;
}

.guarantee-item h3 {
    color: #1f2937;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.guarantee-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Treatment Safety Section */
.treatment-safety {
    padding: 80px 0;
    background: #f9fafb;
}

.safety-features {
    max-width: 900px;
    margin: 0 auto;
}

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

.safety-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.safety-item:hover {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.safety-icon {
    margin-bottom: 10px;
}

.safety-badge {
    font-size: 2rem;
    background: #f3f4f6;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.safety-item span {
    color: #374151;
    font-weight: 500;
    font-size: 14px;
}

/* Awards Section */
.awards {
    padding: 80px 0;
    background: white;
}

.awards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.award-item {
    background: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.award-logo {
    margin-bottom: 20px;
}

.award-badge {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    width: 120px;
    margin: 0 auto;
}

.award-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.award-text {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 4px;
}

.award-subtext {
    font-size: 0.8rem;
    opacity: 0.9;
}

.award-item p {
    color: #374151;
    line-height: 1.6;
}

/* Review Platforms */
.review-platforms {
    margin-top: 40px;
    text-align: center;
}

.platform-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.logo-item {
    padding: 15px 25px;
    background: #16a34a;
    color: white;
    border-radius: 8px;
    font-weight: 600;
}

.platform-name {
    font-size: 16px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f9fafb;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
}

.faq-question {
    padding: 25px;
    margin: 0;
    color: #1f2937;
    font-size: 1.2rem;
    cursor: pointer;
    border-bottom: 1px solid #e5e7eb;
}

.faq-answer {
    padding: 0 25px 25px;
}

.faq-answer p {
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* Author Bio and Footer Updates */
.author-bio {
    background: #374151;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.author-bio h3 {
    color: #16a34a;
    margin-bottom: 10px;
}

.author-bio p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #16a34a;
}

.areas-conclusion {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1rem;
    color: #374151;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

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

.service-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.service-title {
    color: #1f2937;
    margin-bottom: 15px;
}

.service-description {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: #16a34a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #15803d;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: #f9fafb;
}

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

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.feature-icon-large {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.feature-title {
    color: #1f2937;
    margin-bottom: 10px;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

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

.testimonial-card {
    background: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #16a34a;
}

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

.stars {
    color: #fbbf24;
    font-size: 18px;
}

.testimonial-text {
    font-style: italic;
    color: #374151;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-author {
    color: #6b7280;
    font-weight: 500;
    font-style: normal;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f9fafb;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-description {
    color: #6b7280;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 20px;
    margin-top: 2px;
}

.contact-phone, .contact-email {
    color: #16a34a;
    text-decoration: none;
    font-weight: 500;
}

.contact-phone:hover, .contact-email:hover {
    text-decoration: underline;
}

/* Form Styles */
.quote-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #374151;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    margin-top: 15px;
}

/* Areas Served Section */
.areas-served {
    padding: 80px 0;
    background: white;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.area-item {
    background: #f3f4f6;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    font-weight: 500;
    color: #374151;
    transition: all 0.3s ease;
}

.area-item:hover {
    background: #16a34a;
    color: white;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    color: #16a34a;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-contact a {
    color: #16a34a;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #16a34a;
}

.certifications p {
    margin-bottom: 8px;
    color: #d1d5db;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-cta {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-features {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .tips-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .considerations-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-legal {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
    
    .nav {
        display: block;
        position: static;
        background: none;
        box-shadow: none;
    }
    
    .nav-list {
        flex-direction: row;
    }
    
    .nav-link {
        padding: 10px 20px;
        border: none;
    }
    
    .header-phone {
        display: block;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .tips-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .considerations-list {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .guarantees-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .guarantees-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Keyboard Navigation */
.btn:focus,
.nav-link:focus,
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: 2px solid #16a34a;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .mobile-menu-toggle,
    .hero-cta,
    .contact {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        padding: 20px 0;
    }
    
    .section-title {
        page-break-after: avoid;
    }
}