#about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #FBF8CC;
}

.details {
    max-width: 50%;
}

.details .name {
    font-size: 48px;
    font-weight: 800;
    color: #03045E;
}

.info {
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
    line-height: 1.6;
}

.resume {
    border: 2px solid #474306;
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    background-color: #FBF8CC;
    color: #03045E;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.resume:hover {
    background-color: #474306;
    color: #FBF8CC;
}

/* Image placeholder */
.photo {
    width: 300px;
    height: 300px;
    background-color: #F5EE84;
    border-radius: 50%;
    border: 3px solid #03045E;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

@media (max-width: 768px) {
    #about {
        flex-direction: column;
        align-items: center;
        padding: 30px;
    }

    .details {
        max-width: 100%;
        text-align: center;
    }

    .details .name {
        font-size: 36px;
    }

    .info {
        font-size: 18px;
    }

    .resume {
        font-size: 16px;
        padding: 8px 16px;
    }

    .photo {
        width: 200px;
        height: 200px;
        margin-top: 20px;
    }
}