/* Parrainage Section */
.about {
    background-color: var(--light);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content h2 {
    text-align: left;
}

.about-content h2:after {
    left: 0;
    transform: none;
}

.about-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.expertise-list h3 {
    margin-top: 20px;
    margin-bottom: 15px;
}

.expertise-list ul {
    list-style: none;
    margin-bottom: 25px;
}

.expertise-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.expertise-list i {
    color: var(--success);
    margin-right: 10px;
    margin-top: 3px;
}

.modalites h4 {
    color: var(--brown);
}

.modalites ul {
    list-style: none;
    padding-left: 0;
}

.modalites li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: var(--brown);
}

.modalites li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--brown);
}

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-content h2 {
        text-align: center;
    }
    
    .about-content h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
}