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

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

/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.emergency-banner a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    margin-left: 10px;
    padding: 5px 15px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.emergency-banner a:hover {
    background-color: rgba(255,255,255,0.3);
    transform: scale(1.05);
}

/* Header and Navigation */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

nav img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #dc3545;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    margin: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background: rgba(0,0,0,0.7);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.6);
    background: linear-gradient(135deg, #c82333, #a71e2a);
}

/* Content Sections */
.intro, .content {
    padding: 60px 30px;
    text-align: center;
    background: white;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.intro h2, .content h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #333;
}

.intro p, .content p {
    font-size: 1.2em;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Section */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 30px;
    background: white;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.services h2 {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #333;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.5em;
    margin: 20px;
    color: #333;
}

.service-card p {
    margin: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

.service-card a {
    display: inline-block;
    margin: 0 20px 20px;
    color: #dc3545;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

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

/* Footer */
footer {
    background: linear-gradient(135deg, #333, #222);
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
}

footer p {
    margin: 10px 0;
}

footer a {
    color: #dc3545;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

/* Internal Links */
.internal-links {
    background: #f8f9fa;
    padding: 40px 30px;
    margin: 20px;
    border-radius: 10px;
    border-left: 5px solid #dc3545;
}

.internal-links h2 {
    color: #333;
    margin-bottom: 20px;
}

.internal-links ul {
    list-style: none;
}

.internal-links li {
    margin: 10px 0;
}

.internal-links a {
    color: #dc3545;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.internal-links a:hover {
    color: #c82333;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    .hero-text {
        padding: 20px;
    }
    
    .services {
        grid-template-columns: 1fr;
    }
}




/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav li {
    margin-left: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    color: white;
}

.hero img {
    width: 100%;
    height: auto;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
}

.cta-button {
    background-color: #d9534f;
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

/* Services Section */
.services {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.service-card {
    text-align: center;
    width: 30%;
}

.service-card img {
    width: 100%;
    height: auto;
}


