/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body Styles */
  body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
  }
  
  /* Download Button Style */
  .download-btn{
    padding: 10px 20px;
    font-size: 14px;
    box-shadow: 0 6px 20px -8px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 500ms ease;
  }

  .download-btn:hover{
    transform: translateY(+2px);
  }

  /* Container Styles */
  .container {
    width: 85%;
    margin: auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Section Styles */
  .section {
    margin-bottom: 30px;
    border-left: 5px solid #333;
    padding-left: 10px;
    transition: background-color 0.5s ease;
  }
  
  .section:hover {
    background-color: #f4f4f4;
  }
  
  .section:first-child {
    margin-top: 0;
  }
  
  .section:first-of-type{
    background-color: #205375;
    color: white;
  }

  /* Sub-Section Styles */
  .sub-section {
    margin-top: 20px;
    margin-left: 20px;
  }
  
  /* Heading Styles */
  h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  /* List Styles */
  ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    font-size: 18px;
  }
  
  li {
    margin-bottom: 5px;
    line-height: 1.5;
  }
  
  li strong {
    font-weight: bold;
  }
  
  /* Select Styles */
  select {
    font-size: 18px;
    padding: 5px;
    border-radius: 5px;
    border: none;
    margin-left: 10px;
    transition: background-color 0.5s ease;
  }
  
  select:hover {
    background-color: #f4f4f4;
  }
  
  /* Profile Picture Styles */
.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 8%;
    object-fit: cover;
    margin-right: auto;
    display: block;
  }


  /* Job Styles */
.job {
  margin-bottom: 30px;
}

.job h3 {
  margin: 0;
}

.job h4 {
  margin: 0 0 10px 0;
  font-weight: normal;
}

.job .date {
  margin: 0 0 10px 0;
  font-style: italic;
}

.job ul {
  margin: 0;
  padding: 0 0 0 20px;
  list-style: disc;
}

.job ol {
  padding-left: 1.5em;
  font-size: 0.9em
}
