
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
  }
  
 
  header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
  }
  
  header .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  header nav ul {
    list-style-type: none;
  }
  
  header nav ul li {
    display: inline;
    margin: 0 15px;
  }
  
  header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }
  
  header nav ul li a:hover {
    color: #f39c12;
  }
  

  .about-section {
    padding: 60px 0;
    background-color: #fff;
  }
  
  .about-section .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .about-image {
    flex: 1 1 300px;
    padding-right: 30px;
  }
  
  .profile-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .about-text {
    flex: 2 1 500px;
  }
  
  .about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  .about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
  .about-text h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #333;
  }
  
  .about-text ul {
    list-style-type: none;
    padding-left: 20px;
  }
  
  .about-text ul li {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  
  .about-text ul li strong {
    color: #f39c12;
  }
  
  
  footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
  }
  
  footer p {
    font-size: 1rem;
  }
  