/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f4e7; /* Light beige background */
    color: #333; /* Dark gray text */
}

/* Container */
.container {
    width: 80%;
    margin: 0 auto;
}

/* Navigation */
nav {
    background-color: #c85b4a; /* Terracotta red */
    padding: 20px 0;
}

nav .logo {
    color: #f9f4e7; /* Light beige */
    font-size: 24px;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
}

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

nav ul li a {
    color: #f9f4e7; /* Light beige */
    text-decoration: none;
    font-size: 18px;
}

/* Intro Section */
.intro {
    background-color: #5a8d8e; /* Muted teal */
    text-align: center;
    padding: 100px 0;
}

.intro h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #f9f4e7; /* Light beige */
}

.intro p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #f9f4e7; /* Light beige */
}

.cta-btn {
    background-color: #f9f4e7; /* Light beige */
    color: #5a8d8e; /* Muted teal */
    padding: 10px 30px;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
}

.cta-btn:hover {
    background-color: #dfc9a9; /* Light terracotta red */
}

/* Services Section */
.services {
    background-color: #f9f4e7; /* Light beige */
    padding: 50px 0;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #c85b4a; /* Terracotta red */
}

.service-cards {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.service-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 30%;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid #ddd;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.service-card h3 {
    margin-top: 15px;
    font-size: 24px;
    color: #5a8d8e; /* Muted teal */
}

.service-card p {
    color: #333; /* Dark gray */
}

/* Contact Us Section */
.contact {
    background-color: #c85b4a; /* Terracotta red */
    padding: 50px 0;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #f9f4e7; /* Light beige */
}

form {
    max-width: 500px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    font-size: 18px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    background-color: #f1f1f1; /* Light gray background for inputs */
    color: #333;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.submit-btn {
    background-color: #5a8d8e; /* Muted teal */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

.submit-btn:hover {
    background-color: #4d7672; /* Darker muted teal */
}

/* Footer */
footer {
    background-color: #5a8d8e; /* Muted teal */
    padding: 20px 0;
    text-align: center;
}

footer p {
    color: #f9f4e7; /* Light beige */
}
