/* Enhanced RRN Page Styling */
.rrn-dynamic-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
}

/* Main heading */
.rrn-dynamic-page h1 {
    color: #dc2626;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 4px solid #dc2626;
    padding-bottom: 15px;
    text-align: center;
}

/* Hero section */
.hero-text {
    font-size: 1.3rem;
    color: #374151;
    text-align: center;
    margin: 30px 0;
    font-weight: 500;
}

/* Emergency CTA styling */
.cta-primary {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
}

.cta-primary h2 {
    color: white;
    margin: 0 0 15px 0;
    font-size: 1.8rem;
}

.cta-primary p {
    color: #fecaca;
    margin: 0 0 20px 0;
    font-size: 1.1rem;
}

.btn-emergency {
    background: white;
    color: #dc2626;
    padding: 18px 40px;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 3px solid white;
}

.btn-emergency:hover {
    background: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: #991b1b;
}

/* Content sections */
.service-overview-section,
.coverage-areas-section,
.equipment-specs-section,
.response-times-section,
.pricing-breakdown-section,
.process-walkthrough-section,
.vehicle-compatibility-section,
.safety-protocols-section,
.local-logistics-section,
.weather-considerations-section,
.business-coverage-section,
.customer-prep-section,
.testimonials-local-section,
.faq-comprehensive-section,
.cross-services-section {
    background: #f9fafb;
    margin: 40px 0;
    padding: 35px;
    border-radius: 12px;
    border-left: 6px solid #dc2626;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Section headings */
.rrn-dynamic-page h2 {
    color: #1f2937;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
}

/* Section paragraphs */
.rrn-dynamic-page p {
    color: #374151;
    font-size: 1.1rem;
    margin-bottom: 16px;
    text-align: left;
}

/* Secondary CTA sections */
.cta-section {
    background: #1f2937;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin: 30px 0;
}

.btn-primary {
    background: #dc2626;
    color: white;
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #991b1b;
}

/* City description (original content) */
.city-description {
    background: #fffbeb;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    border-left: 5px solid #f59e0b;
}

.city-description h3 {
    color: #92400e;
    font-size: 1.5rem;
    margin: 0 0 15px 0;
}

/* Testimonials special styling */
.testimonials-local-section {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-left-color: #0ea5e9;
}

/* FAQ special styling */
.faq-comprehensive-section {
    background: #fefce8;
    border-left-color: #eab308;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .rrn-dynamic-page {
        padding: 15px;
    }
    
    .rrn-dynamic-page h1 {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .btn-emergency {
        padding: 15px 25px;
        font-size: 1.2rem;
    }
    
    .service-overview-section,
    .coverage-areas-section,
    .equipment-specs-section,
    .response-times-section,
    .pricing-breakdown-section,
    .process-walkthrough-section,
    .vehicle-compatibility-section,
    .safety-protocols-section,
    .local-logistics-section,
    .weather-considerations-section,
    .business-coverage-section,
    .customer-prep-section,
    .testimonials-local-section,
    .faq-comprehensive-section,
    .cross-services-section {
        padding: 25px 20px;
        margin: 30px 0;
    }
    
    .rrn-dynamic-page h2 {
        font-size: 1.5rem;
    }
}

/* Print styles */
@media print {
    .cta-primary,
    .cta-section {
        display: none;
    }
}
