.align-items-center {
    align-items: center;
}

.cta-buttons-2 {
    margin-top : 10px;
    display : flex;
    justify-content: center;
    gap : 10px;
    align-items: center;
}

.flex {
    display: flex !important;
    flex-direction: column;
    align-items: center;
}

.cta-buttons-2 .btn-outline {
    border : 1px solid black;
    color : black;
}
/* HERO */
.section-hero {
    padding: 120px 20px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
}

.hero-subtitle {
    margin-top : 0;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: #000;
    margin: 20px 0;
}

.hero-text {
    max-width: 500px;
    margin-bottom: 25px;
}

.hero-image {
    width: 100%;
    border-radius: 18px;
}

/* SECTIONS */
.section {
    padding: 100px 20px;
}

.section-light {
    background: #f8f8f8;
    padding: 100px 20px;
}

.section-header.center {
    text-align: center;
    margin-bottom: 60px;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    border: 1px solid #e5e5e5;
    padding: 35px;
    border-radius: 18px;
    background: white;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: black;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.card-index {
    font-size: 12px;
    color: #999;
    letter-spacing: 0.15em;
}

.card-line {
    height: 1px;
    width: 0;
    background: black;
    margin-top: 20px;
    transition: 0.3s;
}

.card:hover .card-line {
    width: 100%;
}

.card.small {
    padding: 25px;
}

/* LISTES */
.checklist li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    list-style: none;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
}

.list li {
    margin-bottom: 8px;
}

/* IMAGES */
.image-rounded {
    width: 100%;
    border-radius: 18px;
}

/* VALUES */
.values {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
    gap: 20px;
    font-weight: 500;
}

/* CTA */
.section-cta {
    background: black;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.section-cta p {
    color: #ccc;
    margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .cards {
        grid-template-columns: 1fr;
    }

    .values {
        grid-template-columns: 1fr 1fr;
    }

    .section,
    .section-light,
    .section-hero {
        padding: 60px 20px;
    }
}

.maurice {
    color : black !important;
}