/* Road Rescue Network Custom Styling */
.rrn-dynamic-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.rrn-dynamic-page h1 {
    color: #d32f2f;
    font-size: 2.5em;
    margin-bottom: 20px;
    border-bottom: 3px solid #d32f2f;
    padding-bottom: 10px;
}

.rrn-dynamic-page h2 {
    color: #1976d2;
    font-size: 1.8em;
    margin: 30px 0 15px 0;
    border-left: 4px solid #1976d2;
    padding-left: 15px;
}

.rrn-dynamic-page h3 {
    color: #424242;
    font-size: 1.4em;
    margin: 25px 0 12px 0;
}

.hero-text {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-primary {
    background: linear-gradient(135deg, #d32f2f, #f44336);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.btn-emergency {
    background: #fff;
    color: #d32f2f;
    padding: 15px 30px;
    font-size: 1.3em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-emergency:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.cta-section {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    margin: 40px 0;
}

.btn-primary {
    background: #1976d2;
    color: white;
    padding: 12px 25px;
    font-size: 1.1em;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #1565c0;
}

.city-description {
    background: #fafafa;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    border-left: 5px solid #1976d2;
}

.city-description h3 {
    color: #1976d2;
    margin-top: 0;
}

.rrn-dynamic-page ul {
    margin: 20px 0;
    padding-left: 25px;
}

.rrn-dynamic-page li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .rrn-dynamic-page {
        padding: 15px;
    }
    
    .rrn-dynamic-page h1 {
        font-size: 2em;
    }
    
    .btn-emergency {
        padding: 12px 20px;
        font-size: 1.1em;
    }
}
