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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa; /* Light grey background */
    color: #343a40; /* Dark grey text */
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-weight: 600; /* Bolder headings */
    color: #212529; /* Slightly darker grey for headings */
}

p {
    margin-bottom: 1rem;
}

a {
    color: #1abc9c; /* Minty green links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #16a085; /* Darker mint on hover */
}

/* Hero Header */
.hero {
    background-color: #1abc9c; /* Primary Mint color */
    color: #ffffff;
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem; /* Large headline */
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.hero .subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: #ecf0f1; /* Light grey subtitle */
    margin-bottom: 0;
}

/* Smaller Hero for subpages */
.hero-small {
    padding: 3rem 0; /* Less padding */
}

.hero-small h1 {
    font-size: 2.5rem; /* Smaller headline */
}

/* Utility Classes */
.section-padding {
    padding: 4rem 0;
}

/* Services Section */
#services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.claims-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    gap: 2rem;
}

.claim-item {
    background-color: #ffffff;
    padding: 2rem;
    border: 1px solid #e9ecef; /* Light border */
    border-radius: 5px;
    text-align: center;
}

.claim-item h3 {
    font-size: 1.4rem;
    color: #1abc9c; /* Mint color for claim titles */
    margin-bottom: 1rem;
}

.claim-item p {
    font-size: 0.95rem;
    color: #6c757d; /* Medium grey text */
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    background-color: #e9ecef; /* Light grey background for contrast */
}

#contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-wrap: wrap; /* Wrap on smaller screens */
    justify-content: space-around; /* Space out items */
    text-align: center;
    gap: 2rem;
}

.contact-info,
.contact-mail {
    flex-basis: 300px; /* Base width for each item */
}

.contact-details strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    font-size: 1rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 0;
}

.contact-mail a {
    font-weight: 600;
}

/* Footer */
footer {
    background-color: #343a40; /* Dark grey footer */
    color: #adb5bd; /* Lighter grey text */
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 4rem;
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 0;
}

footer a {
    color: #dee2e6; /* Even lighter grey for footer links */
    font-weight: 400;
}

footer a:hover {
    color: #ffffff; /* White on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero .subtitle {
        font-size: 1.1rem;
    }
    #services h2, #contact h2 {
        font-size: 2rem;
    }
    .section-padding {
        padding: 3rem 0;
    }
    .contact-details {
        flex-direction: column; /* Stack contact info vertically */
        align-items: center;
    }
    .hero-small h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .container {
        padding: 0 15px;
    }
    .claim-item {
        padding: 1.5rem;
    }
}
