
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0f1b2b;
    color: white;
}

/* HEADER */
.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #152238;
}

   .logo {
    height: 100px;
}
}

/* NAV */
nav a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
    font-size: 18px;
}

/* HERO */
.hero {
    text-align: center;
    padding: 60px 20px;
}

.cta {
    display: inline-block;
    padding: 12px 25px;
    background: #2ecc71;
    color: black;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
}

/* BADGE */
.badge-green {
    background: #2ecc71;
    color: black;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

/* SERVICES */
.services-section {
    padding: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card {
    background: #152238;
    padding: 20px;
    border-radius: 10px;
}

/* PRESTATIONS */
.prestations-section {
    padding: 40px;
}

.prest-card {
    background: #152238;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

/* 🔥 ICI ON RÉDUIT LES PHOTOS */
.prest-card img {
    width: 450px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

/* ABOUT */
.about-section {
    padding: 40px;
    max-width: 800px;
    margin: auto;
}

/* CONTACT */
.contact-section {
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 8px;
    border: none;
}

.contact-form button {
    padding: 12px;
    background: #2ecc71;
    border: none;
    border-radius: 8px;
    font-weight: bold;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 20px;
    background: #152238;
    margin-top: 40px;
}