/* Reset and Base Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: linear-gradient(to bottom, #e0f7fa, #ffebee);
    color: #2e2e2e;
    transition: background 0.5s ease-in-out;
  }

  a {
    color: #ff6f00;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  a:hover {
    color: #e65100;
  }

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

  .navbar .logo {
    font-size: 1.5em;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  }

  .navbar ul {
    list-style: none;
    display: flex;
    gap: 15px;
  }

  .navbar li {
    position: relative;
  }

  .navbar li::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #ff6f00;
    left: 0;
    bottom: -5px;
    transition: width 0.3s;
  }

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

  /* Hamburger Menu */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }

  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 4px 0;
    transition: all 0.3s ease;
  }

  /* Responsive Navigation */
  @media (max-width: 768px) {
    .navbar ul {
      position: fixed;
      top: 60px;
      right: -100%;
      height: 100vh;
      width: 200px;
      background-color: rgba(46, 46, 46, 0.95);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: right 0.3s ease;
    }

    .navbar ul.active {
      right: 0;
    }

    .hamburger {
      display: flex;
    }
  }

  /* Main Content Styles */
  .container {
    max-width: 1200px;
    margin: 100px auto 50px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    gap: 20px;
  }

  .content {
    flex: 3;
  }

  .sidebar {
    flex: 1;
    position: sticky;
    top: 100px;
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .sidebar h3 {
    margin-bottom: 10px;
    color: #2e7d32;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  }

  .sidebar ul {
    list-style: none;
  }

  .sidebar li {
    margin-bottom: 8px;
  }

  .sidebar a {
    color: #1565c0;
    font-weight: bold;
  }

  /* Section Styles */
  section {
    margin-bottom: 50px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-left: 5px solid #ff6f00;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  section:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

  section h2, section h3 {
    margin-bottom: 15px;
    color: #2e7d32;
    position: relative;
    padding-bottom: 5px;
  }

  section h2::after, section h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #ff6f00;
    left: 0;
    bottom: 0;
  }

  section p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #424242;
    text-shadow: 0.5px 0.5px 1px rgba(0,0,0,0.1);
  }

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

  section img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  }

  /* Footer Styles */
  footer {
    background-color: #2e2e2e;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
  }

  footer a {
    color: #ff6f00;
    margin: 0 10px;
  }

  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translate3d(0, 20%, 0);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }

  section {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
  }

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