
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f6f9fc;
    color: #333;
    scroll-behavior: smooth;
}

header, section, footer {
    padding: 20px;
    max-width: 900px;
    margin: auto;
    background: #fff;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

h1, h2 {
    color: #007BFF;
}

a {
    color: #007BFF;
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
}

ul li::before {
    content: "✔ ";
    color: green;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.contact-form button {
    background: #007BFF;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #0056b3;
}

.image-gallery {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.image-gallery img {
    max-width: 48%;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.image-gallery img:hover {
    transform: scale(1.02);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: none;
    }
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 28px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
