/* General Reset */
body, h1, h2, p, ul, li, form, input, textarea, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #005f73;
    color: #fff;
    padding: 15px 20px;
}
header .logo {
    font-size: 1.5rem;
    font-weight: bold;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}
nav a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    transition: background 0.3s;
}
nav a:hover {
    background: #0a9396;
    border-radius: 5px;
}

#hero {
    text-align: center;
    background: #94d2bd;
    padding: 50px 20px;
}
#hero h1 {
    font-size: 2rem;
    color: #005f73;
}
#hero p {
    margin: 20px 0;
}
#hero .cta {
    padding: 10px 20px;
    background: #0a9396;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}
#hero .cta:hover {
    background: #005f73;
}

section {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}
section img {
    max-width: 100%;
    margin-top: 20px;
}
#services ul {
    list-style: disc;
    padding-left: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
    margin: auto;
}
form input, form textarea, form button {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
form button {
    background: #0a9396;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}
form button:hover {
    background: #005f73;
}

footer {
    text-align: center;
    background: #005f73;
    color: #fff;
    padding: 10px 0;
}

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.floating-buttons a {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.floating-buttons .whatsapp {
    background: #25d366;
}
.floating-buttons .call {
    background: #0a9396;
}
