body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Modern Navigation Bar */
nav {
    background-color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

nav h1 {
    color: #009688;
    margin: 0;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #009688;
    color: white;
    border-radius: 5px;
}

/* Hero Section */
.hero-section {
    background-color: #f0f4f4;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    color: #009688;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

.hero-section .call-to-action {
    background-color: #009688;
    padding: 15px 30px;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.hero-section .call-to-action:hover {
    background-color: #00796b;
}

/* Services Section */
.services {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.services h2 {
    color: #009688;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.service-box {
    display: flex;
    justify-content: space-around;
    align-items: flex-start; /* Ensures the content aligns at the top */
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    margin-bottom: 30px;
}

.service-box img {
    width: 350px;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Ensures the image doesn’t shrink */
}

.service-box div {
    max-width: 500px;
    margin-left: 20px;
    text-align: left;
    flex-grow: 1; /* Ensures the text container grows to take up space */
}

.service-box h3 {
    color: #333;
    margin-bottom: 10px;
}

.service-box p {
    color: #666;
    line-height: 1.6;
}


/* Footer Section */
footer {
    background-color: #009688;
    color: white;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}

footer .phone-number {
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
}

footer p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-box {
        flex-direction: column;
        text-align: center;
    }

    .service-box img {
        margin-bottom: 20px;
    }

    .service-box div {
        margin-left: 0;
    }
}

/* Contact Section */
.contact-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #ffffff;
    margin-top: 20px;
}

.contact-section h2 {
    color: #009688;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-section p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Social Media Buttons */
.social-media {
    margin: 20px 0;
}

.social-button {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.social-button.instagram {
    background-color: #E1306C;
}

.social-button.instagram:hover {
    background-color: #C1235A;
}

.social-button.facebook {
    background-color: #1877F2;
}

.social-button.facebook:hover {
    background-color: #155DB8;
}

/* Google Maps */
.map-container {
    margin: 30px auto;
    max-width: 600px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }
}
