/* Basic Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

h1, h2, h3 {
    font-family: 'Merriweather', serif;
    color: #004d40; /* Dark Teal */
}

h1 {
    font-size: 3.5em;
    margin-bottom: 15px;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 25px;
    text-align: center;
}

h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #00796b; /* Medium Teal */
}

p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #555;
}

/* Hero Section */
.hero-section {
    background: url('siren.jpg') no-repeat center center/cover; /* Replace with the Imgur link of the image I generated */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
    /* Overlay for better text readability */
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
    }
}

.hero-content {
    z-index: 1; /* Ensure content is above the overlay */
    padding: 20px;
}

.hero-content h1 {
    font-size: 4em;
    margin-bottom: 20px;
    color: #e0f2f1; /* Light Teal */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #b2dfdb; /* Lighter Teal */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.btn {
    display: inline-block;
    background-color: #00796b; /* Medium Teal */
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid #00796b;
}

.btn:hover {
    background-color: #004d40; /* Dark Teal */
    border-color: #004d40;
}

.secondary-btn {
    background-color: transparent;
    border-color: #00796b;
    color: #00796b;
}

.secondary-btn:hover {
    background-color: #00796b;
    color: #fff;
}


/* Sections */
section {
    padding: 80px 0;
    text-align: center;
}

.intro-section {
    background-color: #e0f2f1; /* Lightest Teal */
}

.intro-section p {
    max-width: 800px;
    margin: 0 auto 15px auto;
}

.features-section {
    background-color: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    text-align: left;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item img {
    max-width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Ensures images cover the area without distortion */
    border-radius: 8px;
    margin-bottom: 20px;
}

.feature-item h3 {
    color: #00796b;
    margin-bottom: 10px;
}

.feature-item p {
    color: #666;
    font-size: 1em;
}

.call-to-action {
    background-color: #004d40; /* Dark Teal */
    color: #fff;
    padding: 100px 0;
}

.call-to-action h2 {
    color: #e0f2f1;
    margin-bottom: 20px;
}

.call-to-action p {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #b2dfdb;
}

.call-to-action .btn {
    border-color: #e0f2f1;
    color: #e0f2f1;
}

.call-to-action .btn:hover {
    background-color: #e0f2f1;
    color: #004d40;
}

/* Footer */
footer {
    background-color: #222;
    color: #bbb;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
}