body {
    font-family: 'Georgia', Times, serif; 
    font-size: 18px;
    background-color: #f8efd4;
    color: #000;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5e9c0;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar {
    display: flex;
    flex-direction: column;
    align-items: center; 
    margin-bottom: 20px;
}

.img-perfil {
    width: 400px;
    height: 350px; 
    border-radius: 50%; 
    object-fit: cover;
    margin: 20px auto; 
    border: 3px solid #f2dfa5;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.header-text h1 {
    margin: 0;
    font-size: 2.8em; 
    color: #000;
}

.header-text p {
    margin: 5px 0 0 0;
    font-size: 1.3em; 
    color: #333;
}

.main-content {
    padding: 20px;
}

.section {
    margin-bottom: 20px;
}

.section h2 {
    font-size: 2em; 
    color: #ff69b4;
    border-bottom: 2px solid #ff69b4;
    padding-bottom: 5px;
}

.section ul {
    list-style-type: disc;
    padding-left: 20px;
}

.section ul li {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #000;
}

@media (max-width: 480px) {
    .header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .img-perfil {
        margin: 0 auto 10px;
    }

    .header-text h1 {
        font-size: 2em;
    }

    .header-text p {
        font-size: 1em;
    }

    .section h2 {
        font-size: 1.5em;
    }

    .section ul li {
        font-size: 1em;
    }
}