.content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Section principale */
#Dessein {
    position: relative;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1rem;
    padding: 2rem;
    margin-top: 5vh;
}

#Dessein img {
    width: 15vw;
    max-width: 100px;
    height: auto;
}

#Dessein img#BLKROSE {
    max-width: 21.25rem; /* 240px max */
    width: clamp(15rem, 30vw, 21.25rem);
    grid-column: 4 / 7;
    grid-row: 1 / 3;
    place-self: center center;
}

#Dessein img#Bonhomme {
    max-width: 8vw;
    grid-column: 3;
    grid-row: 1;
    place-self: center center;
}

#Planet, #PopCorn, #Smoothie, #Fleche, #Fusée {
    place-self: center center;
}

#Planet      {
    grid-column: 1;
    grid-row: 1;
}

#PopCorn     {
    grid-column: 2;
    grid-row: 2;
}

#Smoothie    {
    grid-column: 7;
    grid-row: 1;
}

#Fleche      {
    grid-column: 8;
    grid-row: 2;
}

#Fusée       {
    grid-column: 9;
    grid-row: 1;
}

/* Titre principal */
#Location {
    padding: 0;
    margin-top: 10vh;
    text-align: center;
}

h2 {
    font-family: Tusker, sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
}

/* Sous-texte */
#TexteLocation {
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #301B37;
    text-align: center;
    margin-top: 1.5rem;
}

/* Bouton catalogue */
#catalogue {
    text-align: center;
    margin-top: 7vh;
    padding: 0;
}

#catalogue a {
    display: inline-block;
    margin-top: 2vh;
    padding: 0.8rem 2rem;
    background-color: #FF81E3;
    color: #301B37;
    font-weight: bold;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: transform 0.2s ease;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

#catalogue a:hover {
    transform: scale(1.05);
}

/* Section "Comment ça marche" */
.timeline-section {
    text-align: center;
    padding: 6vh 5vw;
    margin: 4vh auto 2vh;
    background-color: #FFFCE7;
}

.timeline-section h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 4vh;
}

.timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.timeline-step {
    width: clamp(220px, 25vw, 280px);
    padding: 1.25rem;
    background-color: #FFFCE7;
    border-radius: 0.75rem;
    box-shadow: 0 0.25rem 1rem rgb(0 0 0 / 8%);
    transition: transform 0.3s ease;
    border: 1px solid #babc90;
}

.timeline-step:hover {
    transform: translateY(-5px);
}

.step-circle {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #052D23;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.timeline-step h4 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: #052D23;
}

.timeline-step p {
    font-size: 0.95rem;
    color: #444;
}