body {
    margin: 0;
    font-family: 'Baloo 2', cursive;
    background: url('assets/bg-feedback.jpg') no-repeat center center fixed;
    background-size:contain;
    color: white;
  }
  
  .side-nav {
    position: fixed;
    right: 0;
    top: 0;
    width: 120px;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .side-nav ul {
    list-style: none;
    padding: 0;
  }
  
  .side-nav ul li {
    margin: 20px 0;
  }
  
  .side-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .side-nav ul li a.active,
  .side-nav ul li a:hover {
    color: #ffcc00;
  }
  
  .feedback-container {
    padding: 50px;
    max-width: 800px;
    margin: auto;
    text-align: center;
  }
  
  .feedback-container h1 {
    font-size: 3rem;
    color: #ffcc00;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 30px;
  }
  
  .feedback-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .feedback-form input,
  .feedback-form textarea,
  .feedback-form select {
    padding: 12px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    width: 100%;
  }
  
  .feedback-form textarea {
    resize: vertical;
    height: 100px;
  }
  
  .feedback-form button {
    padding: 12px;
    font-weight: bold;
    background: #ffcc00;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  .feedback-form button:hover {
    background: #fff;
  }
  
  .review-section {
    margin-top: 60px;
    text-align: left;
  }
  
  .review-section h2 {
    font-size: 2rem;
    color: #f31f1f;
    margin-bottom: 20px;
  }
  
  .review-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin: 10px 0;
    color: #fff;
    backdrop-filter: blur(5px);
  }
  