/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Global Styles */
  body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f8f9fa;
    color: #495057;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-title h2 {
    font-size: 36px;
  }
  
  .section-title p {
    font-size: 18px;
  }
  
  /* Header */
  #header {
    background-color: #343a40;
    color: #fff;
    padding: 20px 0;
  }
  
  #header .profile {
    text-align: center;
  }
  
  #header .profile img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
  }
  
  #header .profile h1 {
    font-size: 24px;
  }
  
  /* Navigation */
  .nav-menu {
    text-align: center;
    margin-top: 20px;
  }
  
  .nav-menu ul {
    list-style: none;
  }
  
  .nav-menu ul li {
    display: inline-block;
    margin-right: 20px;
  }
  
  .nav-menu ul li:last-child {
    margin-right: 0;
  }
  
  .nav-menu ul li a {
    color: #fff;
    font-size: 18px;
  }
  
  /* Hero Section */
  #hero {
    background-color: #343a40;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  #hero h1 {
    font-size: 48px;
  }
  
  /* About Section */
  .about {
    padding: 60px 0;
  }
  
  .about img {
    border-radius: 10px;
  }
  
  .about h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .about p {
    font-size: 18px;
  }
  
  .about ul {
    list-style: none;
  }
  
  .about ul li {
    margin-bottom: 10px;
  }
  
  .about ul li i {
    margin-right: 10px;
  }
  
  /* Resume Section */
  .resume {
    background-color: #fff;
    padding: 60px 0;
  }
  
  .resume-title {
    font-size: 24px;
    margin-bottom: 40px;
  }
  
  .resume-item {
    margin-bottom: 20px;
  }
  
  .resume-item h4 {
    font-size: 20px;
  }
  
  .resume-item h5 {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 5px;
  }
  
  /* Contact Section */
  .contact {
    padding: 60px 0;
    background-color: #f8f9fa;
  }
  
  .contact .section-title .subTitle {
    font-size: 18px;
  }
  
  .contact .info {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
  }
  
  .contact .info h4 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .contact .info p {
    font-size: 18px;
  }
  
  .contact .info i {
    margin-right: 10px;
    font-size: 24px;
  }
  
  /* Footer */
  #footer {
    background-color: #343a40;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  
  #footer span {
    font-weight: bold;
  }
  