/* Sección de About */
.about-section {
    background-color: #A50707;
    padding: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    max-width: 1200px;
}

.profile-image {
    text-align: center;
}

.profile-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-image h3 {
    color: rgb(255, 255, 255);
    margin-top: 20px;
}

.about-details {
    flex: 1;
    margin-left: 50px;
}

.about-details h2 {
    font-size: 36px;
    color: rgb(255, 255, 255);
}

.about-details p {
    font-size: 18px;
    margin-top: 20px;
}

.about-info {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.about-info-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.resume-btn {
    background-color: green;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin-top: 30px;
}
