
/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background: #f7f5f3; /* Light beige background */
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header */
header {
    background: #2a4a49; /* Teal color */
    color: #fff;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header img {
    max-height: 60px;
    margin-left: 20px;
}

header h1 {
    margin: 0;
}

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

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

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* Hero Section */
#hero {
    background: #f7f5f3; /* Light beige */
    color: #2a4a49; /* Teal color */
    text-align: center;
    padding: 50px 0;
}

#hero h2 {
    font-size: 2.5rem;
}

#hero p {
    font-size: 1.2rem;
}

#hero .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #93272c; /* Burgundy color */
    color: #fff;
    text-decoration: none;
    margin-top: 20px;
    border-radius: 5px;
}

/* About Section */
#about {
    padding: 50px 0;
}

#about .about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#about .about-text {
    flex: 1;
    padding-right: 20px;
}

#about .about-image img {
    max-width: 100%;
    border-radius: 10px;
}

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

.service-item {
    display: inline-block;
    width: 30%;
    margin: 15px;
    text-align: center;
}

.service-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.service-item h3 {
    color: #2a4a49; /* Teal color */
}

/* Contact Section */
#contact form {
    max-width: 600px;
    margin: auto;
}

form label, form input, form textarea, form button {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

form input, form textarea {
    padding: 10px;
    border: 1px solid #ccc;
}

form button {
    background: #93272c; /* Burgundy color */
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

/* Footer */
footer {
    background: #2a4a49; /* Teal color */
    color: #fff;
    text-align: center;
    padding: 10px 0;
}
