  <style>
    body { 
      font-family: Cambria, serif !important;
  }

    .header-wrapper {
      background-color: #ffffff;
    }

    .header-logo {
      height: 100px;         /* Increased logo size */
      
      object-fit: contain;
    }

    @media (max-width: 768px) {
      .header-logo {
        height: 70px;
        
      }

      .header-wrapper h2 {
        font-size: 1.4rem;
      }

      .header-wrapper h5 {
        font-size: 1rem;
      }
    }

    .about-section-bg {
      background: linear-gradient(135deg, #f3fdfa, #e2f1ec, #ffffff);
      background-size: 200% 200%;
      animation: gradientShift 10s ease infinite;
      padding: 60px 0;
      position: relative;
      overflow: hidden;
    }

    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .fade-in-section {
      opacity: 0;
      transform: translateY(30px);
      transition: all 1s ease-out;
    }

    .fade-in-section.appear {
      opacity: 1;
      transform: translateY(0);
    }

    #about-section h3 {
      color: #006241;
      font-weight: 600;
      margin-bottom: 20px;
    }

    #about-section p {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #333;
    }
   

  .icon-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    border: 2px solid #198754; /* Bootstrap success green */
  }
  .icon-box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(25, 135, 84, 0.4);
    border-color: #0f5132;
  }
  .icon-box:hover i {
    color: #0f5132 !important; /* darker green on icon */
  }
  .icon-box .btn-outline-success {
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .icon-box .btn-outline-success:hover {
    background-color: #198754;
    color: #fff;
    border-color: #198754;
  }

  .events-whatsnew-container {
    margin: 20px auto;
    font-family: Arial, sans-serif;
  }

  .box {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    background: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  }

  .box h3 {
    margin-top: 0;
    border-bottom: 2px solid #006241;
    padding-bottom: 8px;
    color: #006241;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.5rem;
  }

  .box h3 i {
    color: #006241;
    font-size: 1.5rem;
  }

  /* Events list styles */
  .events-list {
    height: 200px;
    overflow: hidden;
    position: relative;
  }

  .events-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    animation: scrollUp 10s linear infinite;
  }

  .events-list li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
  }

  .event-date {
    font-weight: bold;
    color: #333;
    font-size: 14px;
  }

  .event-title {
    font-size: 16px;
    color: #555;
  }

  /* What's New list styles */
  .whatsnew-list {
    max-height: 200px;
    overflow-y: auto;
    padding-left: 20px;
  }

  .whatsnew-list li {
    margin-bottom: 10px;
    color: #444;
  }

  /* Scroll animation */
  @keyframes scrollUp {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-50%);
    }
  }

  .important-links-section {
    background-color: #f5f5f5;
    border-top: 2px solid #006241;
    border-bottom: 2px solid #006241;
    padding: 20px 0;
  }

  .important-links-section h5 {
    color: #006241;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
  }

  .important-links-section h5 i {
    margin-right: 10px;
  }

  .important-links-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  .important-links-grid a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
  }

  .important-links-grid img {
    max-height: 40px;
    width: auto;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
  }

  .important-links-grid img:hover {
    transform: scale(1.1);
  }

  .important-links-grid span {
    font-size: 0.9rem;
    color: #333;
    text-align: center;
  }

    .marquee { background: #f2f2f2; padding: 10px; color: #006241; font-weight: bold; }
    .carousel-caption { background: rgba(0, 0, 0, 0.5); padding: 15px; border-radius: 10px; }
    .fade-in-section { opacity: 0; transform: translateY(20px); transition: all 0.8s ease; }
    .fade-in-section.visible { opacity: 1; transform: none; }
    
    footer { background: #003820; color: #fff; padding: 30px 10px; }
    footer a { color: #d4e9e2; text-decoration: none; }
  </style>