/* ===== General Styles ===== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}
a { text-decoration: none; }

/* ===== Hero Section ===== */
header {
    background: linear-gradient(135deg, #0D3B66, #00A896);
    color: white;
    text-align: center;
    padding: 100px 20px;
}
header h1 {
    font-size: 2.8em;
    margin: 0 0 20px 0;
}
header p {
    font-size: 1.3em;
    margin-bottom: 30px;
}
.whatsapp-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #25D366;
    color: white;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
}
.whatsapp-button:hover { background-color: #1ebe57; }

/* ===== Services Section ===== */
section h2 {
    text-align: center;
    margin: 60px 0 30px 0;
    color: #0D3B66;
}
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 0 20px 60px 20px;
}
.service {
    background: linear-gradient(135deg, #00A896, #0D3B66);
    color: white;
    width: 280px;
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}
.service .icon {
    font-size: 50px;
    margin-bottom: 15px;
}
.service h3 { margin: 12px 0; }
.service p { font-size: 0.95em; }

/* ===== Testimonials ===== */
.testimonials {
    background: linear-gradient(135deg, #0D3B66, #00A896);
    color: white;
    padding: 60px 20px;
}
.testimonial {
    max-width: 700px;
    margin: 25px auto;
    background-color: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 20px;
    font-size: 1em;
    line-height: 1.5;
    transition: transform 0.3s;
}
.testimonial:hover { transform: scale(1.03); }

/* ===== Contact ===== */
.contact {
    text-align: center;
    background-color: #f0f0f0;
    padding: 60px 20px;
}
.contact p { margin: 12px 0; font-size: 1.05em; }

/* ===== Footer ===== */
footer {
    text-align: center;
    padding: 25px;
    background-color: #0D3B66;
    color: white;
    font-size: 0.9em;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
    .service { width: 90%; }
    header h1 { font-size: 2em; }
    header p { font-size: 1.1em; }
}