@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

* {
    font-family: Helvetica ,Roboto;
}

html{
    scroll-behavior: smooth;
}


body {
    margin: 0;
    padding: 0;
    font-family: Helvetica, Roboto, sans-serif;
    background: #fafafa;
    animation: fadeIn 1.5s ease-in-out forwards;
  }
  main {
    padding: 2em;
    max-width: 1200px;
    margin: 0 auto;
  }
  section {
    margin-bottom: 3em;
  }
  h2 {
    text-align: center;
    margin-bottom: 1em;
  }
  /* Hero Section */
  .hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: rgba(250, 198, 104, 0.8);
    padding: 2em;
    border-radius: 1em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .hero-text {
    flex: 1 1 400px;
    padding: 1em;
  }
  .hero-text h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
  }
  .hero-text p {
    font-size: 1.2em;
    margin: 0.5em 0;
    color: #6e6d6d;
  }
  .hero-image {
    flex: 1 1 300px;
    text-align: center;
  }
  .hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 1em;
  }
  /* Overview Section */
  .overview {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #f2f2f2;
    padding: 2em;
    border-radius: 1em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .overview p {
    flex: 1 1 500px;
    font-size: 1.1em;
    line-height: 1.5;
    padding: 1em;
  }
  .overview img {
    flex: 1 1 300px;
    max-width: 100%;
    border-radius: 1em;
    margin: 1em;
  }
  /* Team Section */
  .team {
    text-align: center;
  }
  .team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
  }
  .team-member {
    background: #e9e9e9;
    padding: 1em;
    width: 200px;
    border-radius: 1em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .team-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 0.5em;
  }
  .team-member h3 {
    margin: 0.5em 0 0.2em;
  }
  .team-member p {
    margin: 0;
    font-size: 0.9em;
    color: #555;
  }
  /* Snapshot Section */
  .snapshot {
    background: #fff;
    padding: 2em;
    border-radius: 1em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .snapshot-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2em;
  }
  .snapshot-info,
  .snapshot-problem {
    flex: 1 1 300px;
    background: #f7f7f7;
    padding: 1em;
    border-radius: 1em;
  }
  .snapshot-info h3,
  .snapshot-problem h3 {
    margin-top: 0;
  }
  .snapshot img {
    display: block;
    margin: 1em auto;
    max-width: 80%;
    border-radius: 1em;
  }
  /* Notebook Highlights Section */
  .notebook-highlights {
    background: #f2f2f2;
    padding: 2em;
    border-radius: 1em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1.5em;
  }
  .highlight {
    flex: 1 1 300px;
    background: #fff;
    padding: 1em;
    border-radius: 1em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .highlight h3 {
    margin-top: 0;
  }
  .notebook-highlights img {
    display: block;
    margin: 1em auto;
    max-width: 80%;
    border-radius: 1em;
  }
  /* Gallery Section */
  .gallery {
    text-align: center;
  }
  .gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5em;
  }
  .gallery-item {
    flex: 1 1 200px;
    background: #fff;
    padding: 1em;
    border-radius: 1em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 1em;
  }
  .gallery-item p {
    margin-top: 0.5em;
    font-size: 0.9em;
  }
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .hero,
    .overview {
      flex-direction: column;
      text-align: center;
    }
    .snapshot-content,
    .team-members,
    .highlights,
    .gallery-grid {
      flex-direction: column;
      align-items: center;
    }
  }