:root {
    --marron: #892E1C;
    --screen-width: 1300px;
}

/* Section intro */
.geo_section {
    background-color: #F5F5F5;
    padding: 100px 20px;
}

.geo_section_container {
    max-width: var(--screen-width);
    margin: auto;
    display: flex;
    gap: 30px;
    align-items: center;
}

.geo_section_info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-basis: 60%;
    justify-content: center;
}

.geo_section_info h1 {
    color: #343340;
    font-family: "Urbanist";
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
}

.geo_section_info p {
    color: #343340;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}

.geo_section_img {
    width: 425px;
    height: 444px;
    overflow: hidden;
    flex-shrink: 0;
}

.geo_section_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section liste */
.geo_section_list {
    background-color: var(--marron);
    padding: 80px 20px;
}

.geo_section_list_container {
    max-width: var(--screen-width);
    margin: auto;
}

.geo_section_list_container h2 {
    color: #fff;
    font-family: "Urbanist";
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

.geo_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
}

.geo_list li {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.geo_list li i {
    color: #fff;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Section conclusion */
.geo_section_conclusion {
    padding: 80px 20px;
    background-color: #fff;
}

.geo_section_conclusion_container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.geo_section_conclusion_container p {
    font-size: 18px;
    font-weight: 500;
    color: #343340;
    line-height: 1.8;
    font-style: italic;
}

/* Responsive */
@media screen and (max-width: 800px) {
    .geo_section_container {
        flex-direction: column;
        align-items: center;
    }

    .geo_section_img {
        width: 100%;
        height: 280px;
    }

    .geo_section_info h1 {
        font-size: 22px;
    }

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

    .geo_section_list_container h2 {
        font-size: 22px;
    }
}
