/* Section About */
.about-section {
    padding: 100px 0;
    background: var(--light-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 5px;
    background: var(--gradient-1);
    border-radius: 3px;
    box-shadow: 0 3px 10px rgba(108, 92, 231, 0.4);
}

.about-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.about-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(108, 92, 231, 0.2);
}

.about-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.about-card p {
    color: #666;
    line-height: 1.8;
}

.about-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.about-icon i {
    position: relative;
    z-index: 2;
    color: white;
}

.about-icon.icon-1 {
    background: var(--gradient-1);
}

.about-icon.icon-2 {
    background: var(--gradient-2);
}

.about-icon.icon-3 {
    background: var(--gradient-3);
}

/* Bouton CV dans la section About */
.btn-cv {
    background: var(--gradient-1);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
}

.btn-cv:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.5);
    color: white;
}

.btn-cv i {
    font-size: 1.2rem;
}
