:root {
    --bg-light: #fdfbf7;
    --bg-dark: #1a1a1a;
    --text-dark: #1a1a1a;
    --text-light: #e0e0e0;
    --accent-purple: #9d78e3;
    --accent-orange: #ffb041;
}

/* --- SECTION HAUTE --- */
.title-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.title {
    font-size: 3.5rem;
    letter-spacing: 1px;
    margin:0;
}

.services {
    text-align: right;
}

.services .label {
    font-size: 0.8rem;
    color: var(--subtitle);
    text-transform: uppercase;
}

.services .service-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 5px 0;
}

.services .date {
    font-size: 0.9rem;
    color: var(--subtitle);
}

/* --- HERO IMAGE --- */
.image-container {
    padding: 20px 0;
    position: relative;
    height: 400px;
}

.image-container img {
    position: relative;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

/* --- SECTION BASSE --- */
.bottom-section {
    background-color: var(--primary);
    color: var(--secondary);
    padding: 2rem;
    border-radius: 2rem 2rem 1rem 1rem;
    margin: 0rem -2rem -2rem;
}

.bottom-section>div {
    backdrop-filter: brightness(1.1);
    border-radius: 1rem;
    padding: 1rem 1rem 0rem;
    overflow: auto;
}
.content-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.side-label {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding-top: 5px;
}

.side-text p {
    font-size: 1.05rem;
    opacity: 0.8;
}

.execution-list {
    list-style: none;
    margin: 30px 0;
}

.execution-list li {
    padding: 15px 0;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.check {
    background: #e0e0e0;
    color: #1a1a1a;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.final-note {
    margin-top: 30px;
    font-size: 0.9rem !important;
    opacity: 0.6 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content, .content-row {
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .services { text-align: left; }
    .bottom-section { padding: 40px 20px; }
    .top-section { padding: 40px 20px; }
}