/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

h1, h2, h3, h4 {
    color: #2c3e50; /* Dark blue/gray */
}

a {
    color: #3498db; /* Blue */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.cta-button {
    display: inline-block;
    background-color: #3498db; /* Blue */
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
    text-decoration: none;
}

/* Header & Navigation */
header {
    background-color: #2c3e50; /* Dark blue/gray */
    color: #ffffff;
    padding: 10px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
}

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

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: #ffffff;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://via.placeholder.com/1500x800/34495e/ffffff?text=Water+Damage+Restoration') no-repeat center center/cover;
    color: #ffffff;
    text-align: center;
    padding: 100px 20px;
}

.hero h2 {
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 20px;
}

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

/* Sections */
.section {
    padding: 60px 0;
    background-color: #ffffff;
}

.section-alt {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.section h3, .section-alt h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

.section ul, .section-alt ul, .section ol, .section-alt ol {
    list-style-position: inside;
    padding-left: 0;
}

.section ul li, .section-alt ul li, .section ol li, .section-alt ol li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-item {
    background-color: #ffffff;
    border: 1px solid #ddd;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.service-item h4 {
    color: #3498db;
    margin-top: 0;
    font-size: 22px;
}

/* FAQ */
.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.faq-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Testimonials */
.testimonial-item {
    background-color: #eaf2f8; /* Light blue/gray */
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-item p:last-child {
    font-style: normal;
    font-weight: bold;
    text-align: right;
    margin-top: 15px;
}

/* Contact Section */
.contact-form {
    max-width: 600px;
    margin: 40px auto 0 auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.contact-form h4 {
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: calc(100% - 20px);
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #3498db;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #2980b9;
}

.map-container {
    margin: 40px 0;
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    position: relative;
    height: 0;
}

.map-container iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border: 0;
}

/* Footer */
footer {
    background-color: #2c3e50; /* Dark blue/gray */
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}

footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    header h1 {
        margin-bottom: 10px;
    }

    .hero h2 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 20px;
    }
}
