/* General styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Header styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #004466; /* Dark teal color */
    color: white;
}

header .logo img {
    height: 50px; /* Adjust based on logo size */
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
}

/* Hero section styling */
.hero {
    text-align: center;
    padding: 50px 20px;
    background-color: #0077aa; /* Light teal background */
    color: white;
}

.hero h1 {
    font-size: 2.5em;
}

.hero button {
    padding: 10px 20px;
    background-color: #ff9900; /* Orange button */
    color: white;
    border: none;
    cursor: pointer;
}

/* Services section styling */
#services {
    padding: 50px 20px;
    background-color: #f4f4f4; /* Light gray background */
}

.service-list {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.service-item img {
    max-width: 100px; /* Adjust as needed */
    border-radius: 8px;
}

/* Contact section styling */
#contact {
    padding: 50px 20px;
    background-color: #004466; /* Dark teal background */
    color: white;
}

#contact form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#contact input, #contact textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#contact button {
    padding: 10px;
    background-color: #ff9900;
    color: white;
    border: none;
    cursor: pointer;
}
