body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url(OIP.WEBP);
    background-size: cover;
    background-repeat: no-repeat;
    animation: bg-scroll 30s linear infinite;
}
@keyframes bg-scroll {
    0% { background-position: 0% center; }
    100% { background-position: 100% center; }
}
/* HEADER & NAVBAR (like Services.css) */
header {
    background: rgba(76, 209, 209, 0.95);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #053b73;
    text-decoration: none;
    letter-spacing: 1px;
}
.navbar ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.navbar ul li a {
    color: #053b73;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.navbar ul li a:hover,
.navbar ul li a.active {
    background: #053b73;
    color: #fff;
}

/* MAIN CONTENT */
main {
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding: 0 20px 40px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

.contact {
    margin-top: 32px;
}

.contact h2 {
    color: #053b73;
    font-size: 2rem;
    margin-bottom: 22px;
    font-weight: 700;
    text-align: left;
}

.contact-form-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: flex-start;
}

.contact-card {
    background: transparent;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(76,209,209,0.11);
    padding: 30px 22px 22px 22px;
    text-align: left;
    flex: 1 1 320px;
    min-width: 280px;
}

.contact label {
    display: block;
    margin-bottom: 10px;
}
.contact input[type="text"], .contact input[type="email"], .contact textarea {
    width: 100%;
    margin-bottom: 18px;
    padding: 10px;
    border: 1px solid #ccc;
    background: rgba(255,255,255,0.3);
    color: #053b73;
    border-radius: 8px;
    font-size: 1rem;
}
.contact textarea {
    height: 90px;
    resize: vertical;
}
.contact button {
    background-color: #059862;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
}
.contact button:hover {
    background: #053b73;
    color: #fff;
}

.contact-info-card {
    background: transparent;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(76,209,209,0.11);
    padding: 30px 22px 22px 22px;
    text-align: left;
    flex: 1 1 220px;
    min-width: 220px;
    color: #222;
}

.contact-info-card h3 {
    color: #053b73;
    font-size: 1.2rem;
    margin-bottom: 9px;
    font-weight: 600;
}
.contact-info-card p {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #222;
}

/* FOOTER (like Services.css) */
footer {
    background: #053b73;
    color: #fff;
    padding: 14px 0;
    text-align: center;
    font-size: 1rem;
    margin-top: 40px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}
@media (max-width: 700px) {
    main {
        flex-direction: column;
        max-width: 98vw;
        margin: 10px auto 0 auto;
        border-radius: 8px;
        padding: 8px 4vw 24px 4vw;
    }
    .navbar ul {
        gap: 13px;
    }
    .contact-form-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .contact-card, .contact-info-card {
        min-width: 180px;
        width: 100%;
        margin-bottom: 10px;
    }
}
