/* styles.css */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    background-color: #2c2c54;
}

header {
    background-color: #6a0572;
    padding: 1em 0;
    text-align: center;
}

header .logo h1 {
    color: #f3c623;
    margin: 0;
    font-size: 2em;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1.5em;
}

nav a {
    color: #f3c623;
    text-decoration: none;
    font-size: 1.2em;
}

.hero {
    background: linear-gradient(to bottom right, #6a0572, #f3c623);
    padding: 3em 1em;
    text-align: center;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.hero .cta-button {
    background-color: #f3c623;
    color: #6a0572;
    text-decoration: none;
    padding: 0.5em 1em;
    border-radius: 5px;
    font-weight: bold;
}

section {
    padding: 2em 1em;
    text-align: center;
}

.service {
    background-color: #6a0572;
    margin: 1em auto;
    padding: 1em;
    border-radius: 10px;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

form {
    max-width: 500px;
    margin: 0 auto;
    background-color: #6a0572;
    padding: 1.5em;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

form input, form textarea, form button {
    width: 100%;
    margin-bottom: 1em;
    padding: 0.5em;
    border: none;
    border-radius: 5px;
}

form button {
    background-color: #f3c623;
    color: #6a0572;
    font-weight: bold;
}

footer {
    background-color: #6a0572;
    text-align: center;
    padding: 1em 0;
    margin-top: 2em;
}/* Floating WhatsApp Icon */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 100;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.whatsapp-float img:hover {
    transform: scale(1.1);

/* Floating WhatsApp Icon */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 100;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
}
