* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.hero {
    background-image: url('8ac0d2d6-958c-4417-85a8-f1ac08c26f07.png');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 90vh;
    color: white;
}

.hero .overlay {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    padding: 0 5%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.navbar .logo {
    font-size: 1.5em;
    font-weight: bold;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
}

.navbar .nav-links li {
    margin-left: 20px;
}

.navbar .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar .nav-links a:hover {
    color: #00bcd4;
}

.hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 25px;
}

.button {
    display: inline-block;
    padding: 12px 25px;
    background: #00bcd4;
    color: white;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.button:hover {
    background: #0097a7;
    cursor: pointer;
}

.section {
    padding: 60px 5%;
}

.section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #00695c;
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
}

.card {
    background: #f5f5f5;
    flex: 1 1 30%;
    margin: 10px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.card h3 {
    margin-bottom: 10px;
    color: #004d40;
}

.card p {
    color: #333;
}

.contact form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 20px auto 0;
}

.contact input,
.contact textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact button {
    align-self: flex-start;
}

.footer {
    background: #004d40;
    color: white;
    padding: 20px 5%;
    text-align: center;
}
