/* ==============================
STYLE GLOBAL SITAGLOBE
============================== */

body {
    font-family: Arial, sans-serif;
    background: #f4f6f9;
    margin: 0;
    padding: 0;
}

/* GLOBAL */
.sitaglobe {
    padding: 40px 20px;
}

/* SECTION */
.section {
    margin-bottom: 50px;
}

.section-header {
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 22px;
    color: #1e293b;
}

/* DETAIL OFFRE */
.offer-detail {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.detail-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
}

/* FORMULAIRE CONTACT */
.contact-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background: #16a34a;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #15803d;
}