/* ===========================
   VARIABLES & BASE
=========================== */
:root {
    --green:        #2a8a2a;
    --green-light:  #3aaa3a;
    --green-bg:     #f0f8f0;
    --yellow:       #f0c800;
    --yellow-light: #ffe033;
    --dark:         #0a110a;
    --white:        #ffffff;
    --light:        #f7f9f7;
    --border:       #e8ede8;
    --text:         #1a1a1a;
    --text-light:   #666;
    --radius:       18px;
    --shadow:       0 4px 20px rgba(0,0,0,0.07);
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }
.bg-white   { background: var(--white); }
.bg-light   { background: var(--light); }
.bg-dark    { background: var(--dark); }
.text-green  { color: var(--green); }
.text-yellow { color: var(--yellow-light); }

.section-head       { text-align: center; margin-bottom: 60px; }
.section-head h2    { font-size: 42px; font-weight: 800; margin: 12px 0 16px; }
.section-head p     { font-size: 17px; color: var(--text-light); max-width: 560px; margin: 0 auto; }
.section-head.light h2 { color: #fff; }
.section-head.light p  { color: rgba(255,255,255,0.5); }

.tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.green-tag  { background: var(--green-bg); color: var(--green); border: 1px solid rgba(42,138,42,0.2); }
.yellow-tag { background: rgba(240,200,0,0.1); color: var(--yellow-light); border: 1px solid rgba(240,200,0,0.25); }

/* ===========================
   CURSOR GLOW
=========================== */
.cursor-glow {
    pointer-events: none;
    position: fixed;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(240,200,0,0.10) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    transition: left 0.08s ease, top 0.08s ease;
    mix-blend-mode: screen;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    z-index: 1000;
    background: rgba(10,17,10,0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 10px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    transition: all 0.3s;
}
.navbar.scrolled {
    background: rgba(10,17,10,0.90);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(42,138,42,0.15);
    top: 8px;
}
.nav-container {
    display: flex;
    align-items: center;
    gap: 20px;
}
.logo img { height: 42px; width: auto; flex-shrink: 0; }

/* Liens desktop */
.nav-links {
    display: flex;
    gap: 2px;
    flex: 1;
    justify-content: center;
}
.nav-links a {
    color: rgba(255,255,255,0.75);
    font-size: 13.5px;
    font-weight: 500;
    padding: 7px 11px;
    border-radius: 10px;
    transition: all 0.2s;
    position: relative;
}
/* EFFET JAUNE AU HOVER SUR ONGLETS PC */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 3px; left: 50%; right: 50%;
    height: 2px;
    background: var(--yellow-light);
    border-radius: 2px;
    transition: all 0.25s;
    opacity: 0;
    box-shadow: 0 0 8px var(--yellow-light);
}
.nav-links a:hover {
    color: #fff;
    background: rgba(240,200,0,0.08);
    text-shadow: 0 0 12px rgba(240,200,0,0.4);
}
.nav-links a:hover::after {
    left: 12px; right: 12px;
    opacity: 1;
}

.nav-tel {
    color: #fff;
    font-weight: 700;
    font-size: 13.5px;
    white-space: nowrap;
    background: var(--green);
    padding: 9px 18px;
    border-radius: 12px;
    transition: 0.2s;
    box-shadow: 0 0 16px rgba(42,138,42,0.35);
    flex-shrink: 0;
}
.nav-tel:hover { background: var(--green-light); }
.nav-tel i { margin-right: 6px; }

/* BURGER */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    transition: 0.2s;
    margin-left: auto;
}
.burger:hover { background: rgba(240,200,0,0.12); border-color: rgba(240,200,0,0.3); }
.burger span {
    display: block;
    width: 22px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* MENU MOBILE DROPDOWN */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px 8px 8px;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: 10px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    font-weight: 500;
    padding: 11px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.2s;
}
.mobile-menu a i { width: 18px; text-align: center; color: var(--yellow-light); font-size: 14px; }
.mobile-menu a:hover { background: rgba(240,200,0,0.08); color: #fff; }
.mobile-menu a.mobile-tel {
    background: var(--green);
    color: #fff;
    margin-top: 8px;
    font-weight: 700;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(42,138,42,0.35);
}
.mobile-menu a.mobile-tel:hover { background: var(--green-light); }

/* ===========================
   HERO
=========================== */
.hero {
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(10,30,10,0.80) 100%),
        url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1600') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 80px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-content { max-width: 700px; position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(42,138,42,0.15);
    border: 1px solid rgba(42,138,42,0.3);
    color: #6dd46d;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
}
.pulse-dot {
    width: 8px; height: 8px;
    background: #6dd46d;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(109,212,109,0.5); }
    50%      { box-shadow: 0 0 0 8px rgba(109,212,109,0); }
}
.hero-content h1 { font-size: 62px; font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 24px; }
.highlight { color: var(--yellow-light); }
.hero-sub  { font-size: 18px; color: rgba(255,255,255,0.65); margin-bottom: 40px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-green {
    background: var(--green); color: #fff;
    padding: 16px 32px; border-radius: 12px;
    font-weight: 700; font-size: 16px;
    display: inline-flex; align-items: center; gap: 10px;
    transition: 0.2s;
    box-shadow: 0 4px 20px rgba(42,138,42,0.35);
}
.btn-green:hover { background: var(--green-light); transform: translateY(-2px); }
.btn-white {
    background: rgba(255,255,255,0.1); color: #fff;
    border: 2px solid rgba(255,255,255,0.25);
    padding: 16px 32px; border-radius: 12px;
    font-weight: 600; font-size: 16px;
    display: inline-flex; align-items: center; gap: 10px;
    transition: 0.2s;
}
.btn-white:hover { background: rgba(255,255,255,0.18); }
.hero-infos { display: flex; gap: 28px; flex-wrap: wrap; }
.hi { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 14px; }
.hi i { color: var(--green-light); font-size: 16px; }

/* ===========================
   SERVICES
=========================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: 0.25s;
    box-shadow: var(--shadow);
}
.service-card:hover { border-color: var(--green); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(42,138,42,0.12); }
.sc-icon {
    width: 64px; height: 64px;
    background: var(--green-bg);
    border: 1.5px solid rgba(42,138,42,0.18);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--green);
    margin-bottom: 22px; transition: 0.25s;
}
.service-card:hover .sc-icon { background: var(--green); color: #fff; }
.service-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.service-card p  { font-size: 15px; color: var(--text-light); line-height: 1.7; }

/* ===========================
   VENTE
=========================== */
.vente-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 28px; max-width: 780px; margin: 0 auto;
}
.vente-card {
    background: var(--white); border: 2px solid var(--border);
    border-radius: var(--radius); padding: 40px 36px;
    text-align: center; transition: 0.25s; box-shadow: var(--shadow);
}
.vente-card:hover { border-color: var(--green); transform: translateY(-6px); }
.vc-icon {
    width: 72px; height: 72px; background: var(--green-bg);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: var(--green); margin: 0 auto 22px; transition: 0.25s;
}
.vente-card:hover .vc-icon { background: var(--green); color: #fff; }
.vente-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.vente-card p  { font-size: 15px; color: var(--text-light); line-height: 1.7; margin-bottom: 24px; }
.btn-green-sm {
    display: inline-block; background: var(--green); color: #fff;
    padding: 11px 24px; border-radius: 10px; font-weight: 600; font-size: 14px; transition: 0.2s;
}
.btn-green-sm:hover { background: var(--green-light); transform: translateY(-2px); }

/* ===========================
   RECYCLAGE
=========================== */
.recyclage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-bottom: 40px; }
.rec-card {
    background: rgba(255,255,255,0.04); border: 2px solid rgba(255,255,255,0.07);
    border-radius: var(--radius); padding: 36px 28px; transition: 0.25s;
}
.rec-card:hover { border-color: rgba(42,138,42,0.4); background: rgba(42,138,42,0.06); transform: translateY(-4px); }
.rec-card.rec-highlight { border-color: rgba(240,200,0,0.3); background: rgba(240,200,0,0.05); }
.rec-icon {
    width: 60px; height: 60px; background: rgba(42,138,42,0.12);
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #6dd46d; margin-bottom: 20px;
}
.highlight-icon { background: rgba(240,200,0,0.12); color: var(--yellow-light); }
.rec-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.rec-card p  { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.rec-card p strong { color: rgba(255,255,255,0.85); }
.rec-banner {
    background: rgba(42,138,42,0.1); border: 2px solid rgba(42,138,42,0.25);
    border-radius: var(--radius); padding: 28px 32px;
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.rec-banner > i { font-size: 32px; color: #6dd46d; flex-shrink: 0; }
.rec-banner div { flex: 1; min-width: 200px; }
.rec-banner strong { display: block; color: #fff; font-size: 17px; margin-bottom: 4px; }
.rec-banner span   { color: rgba(255,255,255,0.5); font-size: 14px; }
.btn-yellow {
    background: var(--yellow); color: #000;
    padding: 13px 24px; border-radius: 10px; font-weight: 700; font-size: 15px;
    display: inline-flex; align-items: center; gap: 8px; transition: 0.2s; white-space: nowrap;
}
.btn-yellow:hover { background: var(--yellow-light); transform: translateY(-2px); }

/* ===========================
   TARIFS
=========================== */
.tarifs-grid-2 {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 36px; max-width: 680px; margin: 0 auto 40px;
}
.tarif-card {
    background: var(--white); border: 2px solid var(--border);
    border-radius: var(--radius); padding: 52px 40px; text-align: center; transition: 0.3s;
}
.tarif-glow {
    border-color: var(--green);
    box-shadow: 0 0 30px rgba(42,138,42,0.15), 0 8px 32px rgba(42,138,42,0.12);
}
.tarif-glow:hover { transform: translateY(-8px); box-shadow: 0 0 50px rgba(42,138,42,0.28), 0 16px 48px rgba(42,138,42,0.20); }
.tarif-icon {
    width: 72px; height: 72px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin: 0 auto 24px;
}
.green-icon { background: var(--green-bg); color: var(--green); border: 1.5px solid rgba(42,138,42,0.18); }
.tarif-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.tarif-price   { margin-bottom: 20px; }
.t-amount      { font-size: 72px; font-weight: 800; line-height: 1; }
.green-amount  { color: var(--green); }
.tarif-card p  { font-size: 15px; color: var(--text-light); line-height: 1.7; }
.info-banner {
    max-width: 680px; margin: 0 auto;
    background: var(--green-bg); border: 1.5px solid rgba(42,138,42,0.2);
    border-radius: 12px; padding: 20px 24px;
    display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--text-light);
}
.info-banner i      { color: var(--green); font-size: 20px; flex-shrink: 0; }
.info-banner strong { color: var(--green); }

/* ===========================
   AVIS
=========================== */
.avis-track-wrapper {
    overflow: hidden;
    padding: 20px 0 40px;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.avis-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: avisScroll 45s linear infinite;
}
.avis-track:hover { animation-play-state: paused; }
@keyframes avisScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.avis-card {
    background: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: 18px; padding: 28px 28px 22px;
    width: 320px; flex-shrink: 0; transition: 0.25s;
    position: relative; overflow: hidden;
}
.avis-card::before {
    content: '"';
    position: absolute; top: -10px; right: 16px;
    font-size: 100px; color: rgba(240,200,0,0.06);
    font-family: Georgia, serif; line-height: 1; pointer-events: none;
}
.avis-card:hover {
    border-color: rgba(240,200,0,0.25);
    background: rgba(240,200,0,0.04);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 24px rgba(240,200,0,0.08);
}
.avis-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.avis-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.avis-nom  { font-size: 14px; font-weight: 700; color: #fff; }
.avis-date { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 2px; }
.avis-stars { margin-left: auto; display: flex; gap: 2px; color: var(--yellow); font-size: 13px; }
.avis-stars .far { color: rgba(255,255,255,0.2); }
.avis-texte {
    font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 16px;
    display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.avis-source { font-size: 12px; color: rgba(255,255,255,0.25); display: flex; align-items: center; gap: 5px; }
.avis-source i { color: #6dd46d; }
.avis-cta { text-align: center; margin-top: 16px; }

/* ===========================
   HORAIRES
=========================== */
.horaires-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.horaires-table {
    background: var(--white); border: 2px solid var(--border);
    border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.ht-row {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    padding: 14px 24px; border-bottom: 1px solid var(--border);
    font-size: 15px; transition: 0.2s; align-items: center;
}
.ht-row:last-child { border-bottom: none; }
.ht-row:not(.ht-header):not(.closed):hover { background: var(--green-bg); }
.ht-header { background: var(--green); color: #fff; font-weight: 700; font-size: 14px; text-transform: uppercase; }
.ht-row.closed { color: var(--text-light); font-style: italic; background: #fafafa; }
.badge-open   { background: #e8f8e8; color: var(--green); font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 20px; display: inline-block; }
.badge-closed { background: #f5f5f5; color: #aaa; font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 20px; display: inline-block; }
.horaires-infos { display: flex; flex-direction: column; gap: 16px; }
.hi-card {
    display: flex; align-items: flex-start; gap: 18px;
    background: var(--white); border: 2px solid var(--border);
    border-radius: var(--radius); padding: 22px 24px; transition: 0.25s; box-shadow: var(--shadow);
}
.hi-card:hover { border-color: var(--green); transform: translateX(4px); }
.hi-icon {
    width: 48px; height: 48px; min-width: 48px;
    background: var(--green-bg); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--green);
}
.hi-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 5px; }
.hi-card p  { font-size: 14px; color: var(--text-light); margin: 0; line-height: 1.6; }
.hi-card a  { color: var(--green); font-weight: 600; }
.hi-card a:hover { text-decoration: underline; }

/* ===========================
   CONTACT
=========================== */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.contact-card {
    background: rgba(255,255,255,0.04); border: 2px solid rgba(255,255,255,0.08);
    border-radius: var(--radius); padding: 48px 28px; text-align: center;
    color: #fff; transition: 0.25s; display: block;
}
.contact-card:hover { border-color: rgba(42,138,42,0.4); background: rgba(42,138,42,0.07); transform: translateY(-6px); }
.contact-icon {
    width: 72px; height: 72px; background: rgba(42,138,42,0.12);
    border: 2px solid rgba(42,138,42,0.2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: #6dd46d; margin: 0 auto 20px; transition: 0.25s;
}
.contact-card:hover .contact-icon { background: var(--green); border-color: var(--green); color: #fff; }
.contact-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.c-val { font-size: 15px; font-weight: 700; color: #6dd46d; margin-bottom: 6px; word-break: break-all; }
.c-sub { font-size: 13px; color: rgba(255,255,255,0.35); }

/* ===========================
   FOOTER
=========================== */
.footer { background: #060d06; border-top: 2px solid rgba(42,138,42,0.12); padding: 70px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { height: 48px; width: auto; margin-bottom: 18px; }
.footer-col > p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; }
.footer-col h4  { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 18px; }
.footer-col ul  { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { font-size: 14px; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.45); transition: 0.2s; }
.footer-col ul li a:hover { color: #6dd46d; }
.footer-col ul li i { color: var(--green-light); font-size: 13px; width: 16px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
    width: 40px; height: 40px; background: rgba(255,255,255,0.06);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); font-size: 16px; transition: 0.2s;
}
.footer-social a:hover { background: var(--green); color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px;
    display: flex; justify-content: space-between;
    font-size: 13px; color: rgba(255,255,255,0.25);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
    .navbar { width: calc(100% - 24px); padding: 10px 16px; border-radius: 18px; }
    .nav-links { display: none !important; }
    .nav-tel   { display: none; }
    .burger    { display: flex; }
    .hero-content h1  { font-size: 42px; }
    .services-grid    { grid-template-columns: repeat(2, 1fr); }
    .vente-grid       { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .recyclage-grid   { grid-template-columns: 1fr; }
    .horaires-wrapper { grid-template-columns: 1fr; }
    .contact-grid     { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .section-head h2  { font-size: 32px; }
}
@media (max-width: 600px) {
    .hero-content h1 { font-size: 30px; }
    .hero-btns       { flex-direction: column; }
    .hero-infos      { flex-direction: column; gap: 12px; }
    .services-grid   { grid-template-columns: 1fr; }
    .tarifs-grid-2   { grid-template-columns: 1fr; }
    .footer-grid     { grid-template-columns: 1fr; }
    .footer-bottom   { flex-direction: column; gap: 8px; text-align: center; }
    .rec-banner      { flex-direction: column; text-align: center; }
    .section         { padding: 70px 0; }
    .avis
