
.about-section .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.text-content {
    flex: 1;
    animation: fadeIn 2s ease-in-out;
}

.text-content h1 {
    font-size: 2rem; /* Réduction de la taille de la police */
    line-height: 1.5;
    margin-bottom: 20px;
}

.highlight-orange {
    color: #e67e22;
}

.highlight-blue {
    color: #2980b9;
}

.text-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 0.9rem; /* Réduction de la taille de la police */
}

.image-content img {
    max-width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: fadeIn 2.5s ease-in-out;
}

.skills {
    margin-top: 40px;
    width: 100%;
}

.skill {
    margin-bottom: 20px;
    animation: slideIn 1.5s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.skill span {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 1.5rem; /* Réduction de la taille de la police */
}

.progress-bar {
    background-color: #ecf0f1;
    border-radius: 5px;
    overflow: hidden;
    height: 10px; /* Taille réduite */
}

.progress {
    background: linear-gradient(90deg, #3498db, #2ecc71);
    height: 100%;
    transition: width 1.5s ease-in-out;
}