.soutez-section {
    padding: 4rem 2rem 0 2rem;
    font-family: 'Nunito', sans-serif;
    color: #111827;
}

.soutez-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.soutez-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 2rem 0 3rem;
    text-align: center;
}

.soutez-image {
    width: 65%;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    border-radius: 1rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.soutez-info-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.soutez-info-grid div {
    flex: 1 1 45%;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.soutez-box {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    margin: 2.5rem 0;
    text-align: left;
}

.soutez-box h2{
    text-align: center;
}

.soutez-list {
    list-style: none;
    padding-left: 0;
    margin: 0 auto;
    max-width: 250px;
}

.soutez-list li {
    padding-left: 1.5rem;
    position: relative;
    text-align: left;
}

.soutez-list li::before {
    content: "›";
    position: absolute;
    left: 2rem;
    top: 1rem;
    color: #8e44ad;
    font-weight: 800;
    font-size: 2rem;
}

.soutez-list a {
    text-decoration: none;
}

.soutez-highlight {
    background-color: #e9d8fd;
    padding: 1.5rem 2rem;
    border-left: 6px solid #8e44ad;
    border-radius: 1rem;
    margin: 2.5rem 0;
}

.soutez-highlight h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
}

.soutez-highlight p {
    margin: 0 !important;
}

.soutez-question {
    margin-top: 3rem;
    text-align: center;
}

.soutez-answers {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.soutez-answers li {
    margin: 0.5rem 0;
}

.soutez-answers li span {
    font-weight: 600;
    display: inline-block;
    margin-right: 0.5rem;
}

.soutez-product-desc {
    font-size: 1.3rem;
    text-align: center;
    margin-top: 1rem;
    color: #4b5563;
}

ul.soutez-answers li::before {
    display: none;
}

@media (max-width: 768px) {
    .soutez-image {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .soutez-info-grid h3 {
        min-height: 70px;
    }
}