* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    color: #333;
    background: #f9f9f9;
    line-height: 1.6;
  }
  .container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  /* Header */
  header {
    background: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }
  .logo {
    font-size: 24px;
    font-weight: bold;
  }
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  .nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Section */
  .hero {
    background: linear-gradient(to right, #a2d0f8, #b0ebee);
    color: #000000;
    padding: 10px 0;
    text-align: center;
  }
  .hero h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  .hero p {
    font-size: 20px;
  }
  
  /* Sections */
  .section {
    padding: 25px 0;
  }
  .section.alt {
    background: #e5e5e5;
  }
   .section p {
    font-size: 18px;
  }
  .section h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .section h4 {
    font-size: 19px;
    margin-bottom: 20px;
  }
  .section ul {
    /* list-style: none; */
    padding-left: 0;
  }
  .section li {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  /* Footer */
  footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
  }

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-with-image {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}


.profile-content {
    display: flex;
    align-items: flex-start;
    gap: 70px;
}

.main-profile-image {
    width: 150px;
    height: 150px;
    border-radius: 10%;
    object-fit: cover;
    flex-shrink: 0;
}