:root {
    --sh-green: #007461;
    --sh-green-light: #308276;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fafafa;
}

.bandeau-header {
    background-color: #ffffff;
    padding: 20px 40px;
    border-bottom: 1px solid #eee;
}

.main-container {
    display: flex;
}

.left-container {
    width: 50%;
}

.image-section {
    background-image: url('../images/entete.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 65vh;
    width: 100%;
    background-color: #e8e8e8; /* couleur de secours tant que entete.jpg n'est pas déposée */
}

.bandeau-home {
    background-color: var(--sh-green);
    color: white;
}

.form-section {
    width: 50%;
    padding: 40px;
}

/* Stepper */
.stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 90%;
    margin: 0 auto 40px;
}

.step {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eeeaea;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.label {
    margin-top: 5px;
    color: #999;
    font-size: 13px;
    text-align: center;
}

.line {
    flex: 1;
    height: 2px;
    margin: 0 10px;
    background-color: #e0e0e0;
    align-self: center;
}

.line.completed {
    background-color: var(--sh-green);
}

.completed .circle {
    background-color: var(--sh-green-light);
}

.completed .label {
    color: var(--sh-green);
}

.active .circle {
    border: 2px solid var(--sh-green-light);
    background-color: white;
    color: var(--sh-green-light);
}

.active .label {
    color: var(--sh-green);
    font-weight: bold;
}

.section-title {
    color: var(--sh-green);
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--sh-green);
    padding-bottom: 5px;
}

.btn-primary-sh {
    background-color: var(--sh-green);
    border-color: var(--sh-green);
    color: white;
}

.btn-primary-sh:hover {
    background-color: var(--sh-green-light);
    border-color: var(--sh-green-light);
    color: white;
}

.type-choice-card {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.type-choice-card:hover {
    border-color: var(--sh-green-light);
}

.type-choice-card input:checked ~ .choice-label {
    color: var(--sh-green);
    font-weight: bold;
}

@media (max-width: 1100px) {
    .main-container {
        display: block;
    }
    .left-container, .form-section {
        width: 100%;
    }
}
