 html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, #ede0d8 0%, #e8d5c0 100%);
    }

    body {
      display: flex;
      flex-direction: column;
    }

/* Navbar */
    .navbar-container {
      background: rgba(159, 133, 112, 0.9);
      height: 75px;
      display: flex;
      justify-content: center;
      align-items: center;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      margin: 20px 30px;
      border-radius: 50px;
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
    }

    .navbar-container:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

    .navbar-ul {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .navbar-li {
      margin: 0 20px;
    }

    .a-navbar {
      color: white;
      text-decoration: none;
      font-size: 1rem;
      font-weight: bold;
      padding: 10px 20px;
      border-radius: 25px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      z-index: 1;
      display: inline-block;
    }

    .a-navbar::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: rgba(255, 223, 145, 0.3); 
      transition: all 0.4s ease;
      z-index: 0; 
      border-radius: 8px; 
    }

    .a-navbar:hover::before {
      left: 0;
    }

    /* Footer */
    .footer-container {
      height: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #6d5d54;
      font-size: 0.9rem;
      background: rgba(245, 240, 231, 0.9);
      margin: 0 30px 20px 30px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }

    .footer-container:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }