/* Basic Reset & Typography */
body {
    font-family: 'Inter', sans-serif; /* Using a clean, modern font */
    margin: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f7f6; /* Light background */
}

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

/* Header */
.header {
    background-color: #00796b; /* Dark Teal */
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    border-radius: 8px; /* Rounded corners */
    margin-bottom: 20px;
}

.header h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: bold;
}

.header p {
    font-size: 1.1em;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    background-color: #e0f2f7; /* Light Blue/Cyan */
    padding: 80px 0;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #004d40; /* Darker Teal */
}

.hero p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.button {
    display: inline-block;
    background-color: #00796b;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px; /* Pill-shaped buttons */
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button:hover {
    background-color: #004d40;
    transform: translateY(-2px);
}

.button.primary {
    background-color: #ffb300; /* Amber for contact button */
    color: #333;
}

.button.primary:hover {
    background-color: #ffa000;
}

/* Services Section */
.services {
    padding: 60px 0;
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.services h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #004d40;
}

.service-grid {
    display: grid; /* Key for grid layout */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid columns */
    gap: 30px; /* Space between grid items */
}

.service-item {
    background-color: #e0f7fa; /* Light cyan */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item h3 {
    color: #00796b;
    margin-top: 0;
    font-size: 1.5em;
}

/* Contact Section */
.contact {
    background-color: #004d40; /* Dark Teal */
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 20px;
}

.contact h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background-color: #333;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    border-radius: 8px;
}

/* Responsive Adjustments (Media Queries) */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2em;
    }

    .hero h2 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.1em;
    }

    .service-grid {
        grid-template-columns: 1fr; /* Stack items on small screens */
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.8em;
    }

    .hero h2 {
        font-size: 2em;
    }

    .button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .service-item {
        padding: 20px;
    }
}