* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}  

body {
    background-color: #f9f6f2;
    color: #4a4a4a;
    line-height: 1.6;
    
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

header.profile {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 20px;
}
.profile-image {
     margin-right: 20px;
}

.profile-image img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
}
.profile-image :hover{
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.profile-info h1 {
font-size: 35px;
color: #3c3c3c;
padding-left: 20px;
}

.profile-info .title {
font-size: 18px;
color: #8b5c46;
margin-bottom: 10px;
padding-left: 20px;
}

.contact-info p {
font-size: 15px;
margin: 5px 0;
padding-left: 20px;
}

#icon{
    padding: 5px;
    color: #9f3d10;
    margin-right: 10px;
}

nav.menu {
display: flex;
justify-content: flex-start;
margin-bottom: 40px;
}

nav.menu a {
text-decoration: none;
padding: 10px 20px;
margin-right: 20px;
font-weight: 700;
color: #8b5c46;
font-size: 20px;
transition: background-color 0.3s ease;
}

nav.menu a:hover {
background-color: #d7c0a9;
border-radius: 4px;
}

nav.menu .active {
background-color: #8b5c46;
color: #ffffff;
border-radius: 4px;
}


ul {
    list-style-type: none;
}
ul li {
    font-size: 16px;
    margin-bottom: 15px;
    padding-left: 20px;
}



section.section {
margin-bottom: 40px;
}

section h2 {
font-size: 20px;
color: #4a4a4a;
margin-bottom: 15px;
border-bottom: 2px solid #8b5c46;
padding-bottom: 5px;
}

.education-item, .experience-item {
margin-bottom: 20px;
}

.education-item h3, .experience-item h3 {
font-size: 20px;
color: #3c3c3c;
margin-bottom: 5px;
}

.education-item .institution, .experience-item .period {
font-size: 15px;
color: #7a7a7a;
text-align: justify
}

.education-item p, .experience-item p {
font-size: 15px;
color: #555555;
margin-top: 5px;
text-align: justify;
}
.footer {
text-align: center;
margin-top: 40px;
font-size: 14px;
color: #9c5c4c;
padding-bottom: 10px;
}