
:root {
    --primary: #2a9d8f;
    --primary-light: #4fb3a8;
    --primary-dark: #1e7a6e;
    --secondary: #264653;
    --secondary-light: #3a5f6e;
    --accent: #e9c46a;
    --accent-light: #f1d58c;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --dark: #1e293b;
    --gray: #64748b;
    --light-gray: #e2e8f0;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --danger-light: #fee2e2;
    --info: #3b82f6;
    --emergency: #dc2626;
    --emergency-light: #fee2e2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(135deg, var(--emergency), #991b1b);
    padding: 20px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.emergency-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg, rgba(255,255,255,0.1) 0px, rgba(255,255,255,0.1) 10px, transparent 10px, transparent 20px);
    animation: moveStripes 20s linear infinite;
}

@keyframes moveStripes {
    from { background-position: 0 0; }
    to { background-position: 100px 0; }
}

.emergency-banner .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.emergency-banner i {
    font-size: 40px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.emergency-banner h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
}

.emergency-banner .emergency-number {
    font-size: 36px;
    font-weight: 800;
    background: rgba(255,255,255,0.2);
    padding: 10px 30px;
    border-radius: 60px;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
}

.emergency-banner .emergency-number:hover {
    background: white;
    color: var(--emergency);
    transform: scale(1.05);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&w=2050') center/cover;
    opacity: 0.1;
    z-index: 0;
    animation: zoomInOut 20s infinite alternate;
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.page-header .emergency-icon {
    font-size: 90px;
    margin-bottom: 20px;
    color: white;
    animation: bounce 3s infinite ease-in-out;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.page-header .breadcrumb {
    font-size: 18px;
    animation: fadeInUp 0.8s ease 0.2s both;
    background: rgba(255,255,255,0.1);
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.page-header .breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.page-header .breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.page-header .breadcrumb span {
    margin: 0 10px;
    opacity: 0.5;
}

/* Section Styles */
.section-padding {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(42, 157, 143, 0.2);
    z-index: -1;
}

.section-description {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 18px;
    line-height: 1.8;
}

/* Emergency Stats */
.emergency-stats {
    background: var(--light-bg);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(42,157,143,0.1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--emergency), var(--primary));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220,38,38,0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(220,38,38,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--emergency);
    font-size: 32px;
    transition: all 0.4s;
}

.stat-card:hover .stat-icon {
    background: var(--emergency);
    color: white;
    transform: rotateY(180deg) scale(1.1);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    color: var(--gray);
    font-size: 15px;
    font-weight: 500;
}

/* Emergency Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.4s;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(42,157,143,0.1);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--emergency), var(--primary));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 50px rgba(220,38,38,0.15);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: rgba(220,38,38,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--emergency);
    font-size: 36px;
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    background: var(--emergency);
    color: white;
    transform: rotate(360deg) scale(1.1);
}

.service-card h3 {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.service-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--dark);
    font-size: 14px;
}

.service-features li i {
    color: var(--emergency);
    font-size: 16px;
    width: 20px;
}

/* Emergency Team Section */
.emergency-team {
    background: var(--light-bg);
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(42,157,143,0.1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220,38,38,0.15);
}

.team-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h4 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 5px;
    font-weight: 700;
}

.team-info .role {
    color: var(--emergency);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.team-info .experience {
    color: var(--gray);
    font-size: 13px;
}

/* Emergency Protocols */
.protocols-section {
    padding: 80px 0;
}

.protocols-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.protocol-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    transition: all 0.4s;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(42,157,143,0.1);
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.protocol-card:hover {
    transform: translateX(-10px);
    box-shadow: 0 20px 40px rgba(220,38,38,0.15);
}

.protocol-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--emergency), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.4s;
}

.protocol-card:hover .protocol-number {
    transform: scale(1.1) rotate(360deg);
}

.protocol-content h3 {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 10px;
    font-weight: 700;
}

.protocol-content p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.protocol-steps {
    list-style: none;
}

.protocol-steps li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--dark);
}

.protocol-steps li i {
    color: var(--emergency);
    font-size: 14px;
}

/* Emergency Facilities */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.facility-card {
    background: linear-gradient(135deg, white, var(--light-bg));
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid rgba(220,38,38,0.1);
}

.facility-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, var(--emergency), #991b1b);
    border-color: transparent;
    box-shadow: 0 20px 30px rgba(220,38,38,0.3);
}

.facility-card i {
    font-size: 40px;
    color: var(--emergency);
    margin-bottom: 15px;
    transition: all 0.4s;
}

.facility-card:hover i {
    color: white;
    transform: scale(1.2);
}

.facility-card h4 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 10px;
    font-weight: 600;
    transition: color 0.3s;
}

.facility-card:hover h4 {
    color: white;
}

.facility-card p {
    color: var(--gray);
    font-size: 13px;
    transition: color 0.3s;
}

.facility-card:hover p {
    color: rgba(255,255,255,0.9);
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(42,157,143,0.1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220,38,38,0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(220,38,38,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--emergency);
    font-size: 28px;
    transition: all 0.4s;
}

.contact-card:hover .contact-icon {
    background: var(--emergency);
    color: white;
    transform: rotate(360deg);
}

.contact-card h3 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-card p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 15px;
}

.contact-link {
    color: var(--emergency);
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    transition: all 0.3s;
    display: inline-block;
}

.contact-link:hover {
    color: var(--secondary);
    transform: scale(1.05);
}

/* What to Do Section */
.what-to-do {
    background: var(--light-bg);
    padding: 80px 0;
}

.steps-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s;
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(220,38,38,0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--emergency), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 10px;
    font-weight: 700;
}

.step-content p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
}

/* Location Section */
.location-section {
    padding: 80px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.location-info {
    padding-right: 40px;
}

.location-info h3 {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 700;
}

.location-info p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.location-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.location-detail i {
    width: 50px;
    height: 50px;
    background: rgba(220,38,38,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emergency);
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.location-detail:hover i {
    background: var(--emergency);
    color: white;
    transform: scale(1.1);
}

.location-detail div h4 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 5px;
    font-weight: 600;
}

.location-detail div p {
    color: var(--gray);
    font-size: 15px;
    margin: 0;
}

.map-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--emergency), #991b1b);
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 20px, transparent 20px, transparent 40px);
    animation: moveStripes 30s linear infinite;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn.primary {
    background: white;
    color: var(--emergency);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-btn.primary:hover {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: var(--emergency);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--emergency), var(--primary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    border: none;
    font-size: 24px;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 20px 40px rgba(220,38,38,0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .section-title {
        font-size: 38px;
    }
    
    .stats-grid,
    .team-grid,
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .page-header h1 {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .emergency-banner h2 {
        font-size: 28px;
    }
    
    .emergency-banner .emergency-number {
        font-size: 28px;
    }
    
    .protocols-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-info {
        padding-right: 0;
    }
}

@media screen and (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header .emergency-icon {
        font-size: 70px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .emergency-banner {
        padding: 15px 0;
    }
    
    .emergency-banner i {
        font-size: 30px;
    }
    
    .emergency-banner h2 {
        font-size: 24px;
    }
    
    .emergency-banner .emergency-number {
        font-size: 24px;
        padding: 8px 20px;
    }
    
    .stats-grid,
    .services-grid,
    .team-grid,
    .facilities-grid,
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card,
    .service-card,
    .team-card,
    .facility-card,
    .contact-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .protocol-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
    }
    
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
    
    .location-detail {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .map-container {
        height: 300px;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header .emergency-icon {
        font-size: 60px;
    }
    
    .page-header .breadcrumb {
        font-size: 14px;
        padding: 8px 15px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .emergency-banner .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .emergency-banner h2 {
        font-size: 20px;
    }
    
    .emergency-banner .emergency-number {
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .protocol-card {
        padding: 20px;
    }
    
    .protocol-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .protocol-content h3 {
        font-size: 18px;
    }
    
    .location-info h3 {
        font-size: 24px;
    }
    
    .scroll-to-top {
        width: 50px;
        height: 50px;
        bottom: 30px;
        right: 30px;
        font-size: 20px;
    }
}

/* Print Styles */
@media print {
    .header, .footer, .emergency-banner, .cta-section,
    .scroll-to-top, .map-container {
        display: none;
    }
    
    .page-header {
        background: none;
        color: black;
        padding: 30px 0;
    }
    
    .page-header .emergency-icon {
        color: var(--primary);
    }
    
    .service-card,
    .protocol-card,
    .step-item {
        break-inside: avoid;
        border: 1px solid #ddd;
        box-shadow: none;
    }
}