    .banner-slider {
      position: relative;
    }

    .banner-text {
      position: absolute;
      left: 50%;
      bottom: 0.3rem;
      transform: translateX(-50%);
      color: #fff;
      background: rgba(0, 0, 0, 0.45);
      padding: .1rem .1rem;
      border-radius: 1px;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-align: center;
      box-shadow: 0 2px 2px rgba(0, 0, 0, 0.12);
      z-index: 2;
      pointer-events: none;
      width: max-content;
      max-width: 90vw;
      display: block;
    }

    .banner-slider:not(:has(.banner-image[src])) .banner-text {
      display: none;
    }

    .banner-image {
      width: 100%;
      height: 320px;
      object-fit: cover;
      border-radius: 0 0 12px 12px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
      transition: opacity 0.7s;
    }

    /* Anuranan Website Styles */
    :root {
      --primary: #4252e1;
      --secondary: #949fa4;
      --background: #f5f5f5;
      --white: #fff;
      --text: #222;
    }

    /* Responsive images */
    img.responsive {
      max-width: 100%;
      height: auto;
      display: block;
    }

    @media (max-width: 600px) {
      .banner-image {
        width: 100vw;
        height: auto;
        object-fit: cover;
      }
    }

    /* Add --accent to :root */
    :root {
      --primary: #a8aab2;
      --secondary: #889292;
      --background: #e2e8e9;
      --white: #fbfbfd;
      --text: #222;
      --accent: #2131c3;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', Arial, sans-serif;
      background: var(--background);
      color: var(--text);
    }

    header {
      background: var(--primary);
      color: var(--white);
      text-align: center;
    }

    nav {
      position: relative;
      height: 50px;
      background: var(--secondary);
      padding: 0 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .nav-links {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
      gap: 2rem;
    }

    .nav-links a {
      color: var(--white);
      text-decoration: none;
      font-weight: 500;
      letter-spacing: 0.5px;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .nav-links a:hover {
      color: #0077cc;
      background: var(--secondary);
    }

    .nav-links a.active {
      color: #fff;
      background: #0077cc;
      border-radius: 2px;
      padding: 0px 6px;
      height: 100%;
      transition: background 0.2s, color 0.2s;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 48px;
      height: 100%;
      min-height: 48px;
      cursor: pointer;
      position: absolute;
      right: 0;
      top: 10;
      bottom: 20;
      transform: none;
      z-index: 2;
    }

    .menu-toggle span {
      display: block;
      width: 18px;
      height: 3px;
      margin: 3px 3px;
      background: var(--white);
      border-radius: 2px;
      transition: 0.3s;
    }

    .menu-toggle.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

    main {
      max-width: 900px;
      margin: 2rem auto;
      background: var(--white);
      border-radius: 8px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
      padding: 2rem;
    }

    @media (max-width: 800px) {
      .menu-toggle {
        display: flex;
      }

      .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 1rem;
        height: auto;
        width: 100px;
        background: var(--secondary);
        border-radius: 8px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
        padding: 1rem 0;
        opacity: 0.7;
        z-index: 10;
      }

      .nav-links.active {
        display: flex;
        padding-left: 24px;
      }
    }

    footer {
      background: var(--primary);
      color: var(--text);
      text-align: center;
      font-size: 12px;
      font-weight: 600;
      /*  padding: .5rem 0;
  margin-top: .5rem;*/
      height: 20px;
    }

    h1,
    h2,
    h3 {
      color: var(--primary);
    }

    .card {
      background: var(--background);
      border-radius: 16px;
      box-shadow: 0 1px 10px rgba(48, 47, 47, 0.712);
      padding: 1.5rem;
      margin-bottom: 1.5rem;
    }

    /* Responsive Design */
    @media (max-width: 700px) {
      main {
        padding: 1rem;
      }

      .nav-links {
        flex-direction: column;
        gap: 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--secondary);
        display: none;
        padding: 1rem 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
      }

      .nav-links.active {
        display: flex;
      }

      .menu-toggle {
        display: flex;
      }
    }

    /* Add modal and scroll-to-top styles */
    .modal {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }

    .modal-content {
      background: var(--white);
      padding: 2rem;
      border-radius: 8px;
      box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
      position: relative;
      min-width: 280px;
      max-width: 90vw;
    }

    .modal .close {
      position: absolute;
      top: 0.5rem;
      right: 1rem;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--accent);
    }

    .scroll-top {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      background: var(--accent);
      color: var(--white);
      border: none;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      font-size: 1.5rem;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
      z-index: 9999;
      transition: background 0.2s;
    }

    .scroll-top:hover {
      background: var(--secondary);
    }

    .card.hovered {
      box-shadow: 0 4px 24px rgba(66, 82, 225, 0.15);
      transform: translateY(-4px) scale(1.02);
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .slider img {
      display: none;
      width: 100%;
      border-radius: 8px;
    }

    .slider img:first-child {
      display: block;
    }

    img.responsive {
      max-width: 100%;
      height: auto;
      border-radius: 6px;
    }

    .form-group {
      margin-bottom: 1rem;
    }

    label {
      display: block;
      margin-bottom: 0.5rem;
      color: var(--secondary);
    }

    input,
    textarea {
      width: 100%;
      padding: 0.5rem;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 1rem;
    }

    input[type="submit"] {
      background: var(--accent);
      color: var(--white);
      border: none;
      padding: 0.75rem 1rem;
      border-radius: 4px;
      cursor: pointer;
      font-weight: 600;
      margin-top: 0.5rem;
    }

    input[type="submit"]:hover {
      background: var(--secondary);
    }