    /* CSS Variables */
    :root {
      --primary-color: #005f73;
      --secondary-color: #0a9396;
      --light-bg: #f8f8f8;
      --dark-bg: #111;
      --text-color: #333;
      --text-light: #fff;
      --transition-speed: 0.3s;
      --border-radius: 1rem;
      --shadow-light: 0 4px 15px rgba(0,0,0,0.1);
    }

    * {
      box-sizing: border-box;
      transition: all var(--transition-speed) ease;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--light-bg);
      color: var(--text-color);
      margin: 0;
      line-height: 1.6;
    }

    header {
      background: var(--text-light);
      padding: 1rem 0;
      box-shadow: var(--shadow-light);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .logo-1 img {
      max-height: 60px;
      transition: transform var(--transition-speed);
    }
    .logo-1 img:hover {
      transform: scale(1.1);
    }

    .login-icon {
      position: absolute;
      top: 1rem;
      right: 1.5rem;
      font-size: 1.8rem;
    }
    .login-icon a {
      color: var(--text-color);
    }

    .topSingleBkg {
      position: relative;
      overflow: hidden;
    }
    .topSingleBkg .item-img {
      background-size: cover;
      background-position: center;
      height: 300px;
      filter: brightness(0.6);
    }
    .topSingleBkg .inner-desc {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: var(--text-light);
    }
    .topSingleBkg h1 {
      font-family: 'Lora', serif;
      font-size: clamp(1.5rem, 5vw, 3rem);
      font-weight: 700;
      text-shadow: 0 2px 6px rgba(0,0,0,0.7);
      margin: 0;
    }

    .container {
      max-width: 1200px;
      margin: auto;
      padding: 0 1rem;
    }

    section.py-5 {
      padding-top: 3rem;
      padding-bottom: 3rem;
    }

    .menu-post {
      background: var(--text-light);
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--shadow-light);
      margin-bottom: 2rem;
      position: relative;
      transform: translateY(0);
    }
    .menu-post:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .menu-grid-img {
      width: 100%;
      height: 200px;
      background-size: cover;
      background-position: center;
      transition: transform var(--transition-speed);
    }
    .menu-post:hover .menu-grid-img {
      transform: scale(1.05);
    }

    .menu-post-desc {
      padding: 1.5rem;
      text-align: center;
    }
    .menu-post-desc h4 {
      font-weight: 600;
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
      color: var(--primary-color);
    }
    .menu-text {
      color: #555;
      font-size: 1rem;
      line-height: 1.6;
    }

    footer {
      background: var(--dark-bg);
      color: #ccc;
      padding: 2rem 0;
      text-align: center;
    }
    footer h5 {
      color: var(--text-light);
      font-weight: 600;
      margin-bottom: 1rem;
    }
    .footer-social {
      list-style: none;
      padding: 0;
      margin: 1rem 0;
      display: flex;
      justify-content: center;
      gap: 1rem;
    }
    .footer-social a {
      color: var(--text-light);
      font-size: 1.3rem;
      transition: color var(--transition-speed);
    }
    .footer-social a:hover {
      color: var(--secondary-color);
    }
    .copyright {
      margin-top: 1rem;
      font-size: 0.9rem;
    }

    @media (max-width: 768px) {
      .login-icon {
        right: 1rem;
      }
      .menu-grid-img {
        height: 180px;
      }
    }

    @media (max-width: 576px) {
      .menu-grid-img {
        height: 160px;
      }
      header {
        padding: 0.75rem 0;
      }
    }
