* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #333;
    background: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #1f8210;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Top green bar */
.top-bar {
    height: 5px;
    background: #1f8210;
}

/* Header */
.header {
    background: #fff;
    padding: 20px 0;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 15px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 55px;
}

/* Navigation */
.main-nav ul {
    display: flex;
    gap: 0;
}

.main-nav li a {
    display: block;
    padding: 8px 16px;
    color: #333;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.main-nav li a:hover,
.main-nav li a.active {
    background: #1f8210;
    color: #fff;
    text-decoration: none;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
    display: none;
    background: #fff;
    border-bottom: 3px solid #1f8210;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.mobile-nav.open {
    display: block;
}

.mobile-nav ul {
    padding: 10px 0;
}

.mobile-nav li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.mobile-nav li:last-child a {
    border-bottom: none;
}

.mobile-nav li a:hover,
.mobile-nav li a.active {
    background: #1f8210;
    color: #fff;
    text-decoration: none;
}

/* Banner */
.banner {
    max-width: 960px;
    margin: 0 auto;
}

.banner img {
    width: 100%;
    display: block;
}

/* Main content area */
.main-content {
    padding: 30px 0;
}

/* Two column hero */
.hero-row {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}

.hero-left {
    flex: 1;
    text-align: center;
}

.hero-left h2 {
    font-size: 18px;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 700;
}

.hero-left .green-text {
    color: #1f8210;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-left .sub-text {
    font-size: 13px;
    color: #666;
    margin-top: 15px;
}

.btn-rdv {
    display: inline-flex;
    align-items: stretch;
    text-decoration: none;
    margin-top: 5px;
}

.btn-rdv span {
    background: #1f8210;
    color: #fff;
    padding: 10px 25px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.btn-rdv .arrow {
    background: #e8a317;
    color: #fff;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.btn-rdv:hover {
    text-decoration: none;
    opacity: 0.9;
}

.hero-right {
    flex: 1.2;
}

.hero-right img {
    width: 100%;
    display: block;
}

/* Slideshow */
.slideshow {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: #f0f0f0;
}

.slideshow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}

.slideshow img.active {
    display: block;
}

.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: #fff;
    border: none;
    padding: 15px 10px;
    cursor: pointer;
    font-size: 18px;
}

.slideshow-nav.prev {
    left: 0;
}

.slideshow-nav.next {
    right: 0;
}

/* Description */
.description {
    padding: 20px 0;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

/* Services buttons */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin: 25px 0;
}

.service-item {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.5px;
    padding: 12px 5px;
    background: #1f8210;
}

/* Partners */
.partners {
    margin: 40px 0 25px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 25px 30px;
}

.partners h3 {
    font-size: 14px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 2px solid #1f8210;
    padding-bottom: 8px;
    display: inline-block;
}

.partners-logos img {
    width: 100%;
    display: block;
}

.partners-main {
    text-align: center;
    margin: 25px 0;
}

.partners-main img {
    max-height: 180px;
}

/* Separator */
.separator {
    width: 100%;
    margin: 15px 0;
}

.separator img {
    width: 100%;
    display: block;
}

/* Page Title */
.page-title {
    background: #f5f5f5;
    border-bottom: 3px solid #1f8210;
    padding: 18px 0;
    margin-bottom: 25px;
}

.page-title h1 {
    font-size: 22px;
    color: #333;
    text-transform: uppercase;
    padding-left: 15px;
}

/* Content generic */
.content {
    padding: 0 0 40px;
}

.content h2 {
    color: #1f8210;
    font-size: 16px;
    margin: 20px 0 12px;
    text-transform: uppercase;
}

.content p {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #555;
}

/* Tarif list */
.tarif-list {
    margin: 15px 0 20px;
}

.tarif-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-bottom: 1px dashed #ccc;
}

.tarif-item:nth-child(odd) {
    background: #f9f9f9;
}

.tarif-item .label {
    font-weight: 600;
    color: #333;
}

.tarif-item .price {
    font-weight: 700;
    color: #1f8210;
}

.tarif-note {
    background: #fffde7;
    border: 1px solid #e0d97c;
    padding: 10px 15px;
    font-style: italic;
    color: #666;
    font-size: 13px;
    margin-top: 10px;
}

/* Contact */
.contact-info {
    margin-bottom: 20px;
    line-height: 2;
}

.contact-info strong {
    color: #333;
}

.contact-form .form-group {
    margin-bottom: 12px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
    font-size: 13px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    font-family: inherit;
    font-size: 13px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1f8210;
}

.contact-form textarea {
    height: 110px;
    resize: vertical;
}

.contact-form button {
    background: #1f8210;
    color: #fff;
    border: none;
    padding: 8px 25px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    text-transform: uppercase;
}

.contact-form button:hover {
    background: #176a0d;
}

.form-message {
    padding: 10px 12px;
    margin-bottom: 12px;
    font-size: 13px;
}

.form-message.success {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    color: #2e7d32;
}

.form-message.error {
    background: #fbe9e7;
    border: 1px solid #ef9a9a;
    color: #c62828;
}

/* Delivery list */
.check-list li {
    padding: 6px 0 6px 22px;
    position: relative;
    color: #555;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1f8210;
    font-weight: 700;
}

/* Footer */
.footer {
    background: #f0f0f0;
    border-top: 1px solid #ddd;
    padding: 15px 0;
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer a {
    color: #1f8210;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-row {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
