/* Reset and base styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    font-size: 16px;
    color: #4B3A3A;
    background: linear-gradient(135deg, #A8D5BA 0%, #F7E9D7 100%);
    transition: background 0.5s ease-in-out;
  }

  a {
    color: #6B4F4F;
    text-decoration: none;
    transition: color 0.3s;
  }

  a:hover {
    color: #F2C94C;
  }

  /* Navigation Styles */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #7FBFA8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #6B4F4F;
  }

  .navbar ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }

  .navbar ul li {
    position: relative;
  }

  .navbar ul li a {
    font-size: 1rem;
    padding: 0.5rem;
    transition: color 0.3s, border-bottom 0.3s;
  }

  .navbar ul li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #F2C94C;
    transition: width 0.3s;
  }

  .navbar ul li a:hover::after {
    width: 100%;
  }

  /* Main Content Styles */
  main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 2rem 2rem 2rem;
  }

  h2, h3, h4 {
    color: #6B4F4F;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
  }

  h2 {
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 2px solid #F2C94C;
  }

  h3 {
    font-size: 1.75rem;
    font-weight: 600;
    border-bottom: 1px solid #F2C94C;
  }

  h4 {
    font-size: 1.5rem;
    font-weight: 500;
  }

  section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background 0.5s ease-in-out;
  }

  section:nth-of-type(odd) {
    background: linear-gradient(135deg, #F7E9D7, #F2C94C);
  }

  section:nth-of-type(even) {
    background: linear-gradient(135deg, #A8D5BA, #6B4F4F);
    color: #FFFFFF;
  }

  p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: inherit;
    text-shadow: 0 0 5px rgba(255,255,255,0.3);
  }

  img {
    display: block;
    max-width: 900px;
    min-width: 500px;
    width: 100%;
    height: auto;
    margin: 1.5rem auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(0,0,0,0.3);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }

    .navbar ul {
      flex-direction: column;
      width: 100%;
      display: none;
    }

    .navbar ul.show {
      display: flex;
    }

    .navbar .menu-toggle {
      display: block;
      cursor: pointer;
      font-size: 1.5rem;
      color: #6B4F4F;
    }

    img {
      max-width: 100%;
      min-width: 300px;
    }
  }

  /* Footer Styles */
  footer {
    padding: 2rem;
    text-align: center;
    background-color: #7FBFA8;
    color: #FFFFFF;
    box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
  }

  /* Animation Styles */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  section {
    animation: fadeIn 1s ease-in-out forwards;
    opacity: 0;
  }

  section.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Typography Enhancements */
  strong {
    font-weight: 700;
    color: #6B4F4F;
    text-shadow: 0 0 3px rgba(0,0,0,0.2);
  }

  em {
    font-style: italic;
    color: #F2C94C;
  }

  /* Navigation Smooth Scroll */
  html {
    scroll-behavior: smooth;
  }
