#resume {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

#resume h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

#resume h2 {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    margin-top: 20px;
}

#resume h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

#resume .contact-info {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

#resume .contact-info li {
    display: inline-block;
    margin-right: 15px;
}

#resume .experience-item, 
#resume .education-item {
    margin-bottom: 15px;
}

#resume .job-title,
#resume .company-name {
    font-weight: bold;
}

#resume .date {
    font-style: italic;
    margin-bottom: 5px;
}

#resume ul {
    margin-top: 5px;
    padding-left: 20px;
}

#resume .skills-category {
    font-weight: bold;
}

@media print {
    #resume {
        max-width: 100%;
    }
}


.education-item {
    display: flex;
    margin-bottom: 20px;
  }
  
  .education-logo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
  
  .education-details h3 {
    margin-bottom: 5px;
  }
  
  .education-details p {
    margin: 0;
    line-height: 1.4;
  }