html {
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}


.feedback-wrapper {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}


.feedback-header {
  background-color: #1e1e1e;
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  width: 70rem;             
  height: auto;            
  max-width: 100%;
  margin: 0 auto 2rem auto;
  margin-top: 4rem;
}

.feedback-header h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
}

.feedback-header p {
  font-size: 1rem;
  color: #ccc;
  margin-top: 0.5rem;
}


.feedback-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}


.feedback-form {
  background-color: #1a1a1a;
  border-radius: 1rem;
  padding: 2rem;
  width: 34rem;             
  height: auto;            
  max-width: 100%;
}

.feedback-form h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feedback-form input[type="text"],
.feedback-form input[type="email"],
.feedback-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 0.5rem;
  background-color: #2a2a2a;
  color: #fff;
  font-size: 1rem;
}

.feedback-form textarea {
  min-height: 7.5rem;
  resize: vertical;
}


.star-rating {
  display: flex;
  gap: 0.5rem;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
}

.star-rating i {
  color: #444;
  transition: color 0.2s;
}

.star-rating i.active {
  color: gold;
}

.feedback-form button {
  background-color: transparent;
  border: 2px solid white;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}


.feedback-form button:hover {
  background-color: white;
  color: black;
  transition: 0.3s ease-in-out;
}



.feedback-info {
  background-color: #1a1a1a;
  border-radius: 1rem;
  padding: 2rem;
  width: 34rem;             
  height: auto;            
  max-width: 100%;
}

.feedback-info h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feedback-info .info-box {
  background-color: #262626;
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.feedback-info .info-box i {
  font-size: 1.5rem;
  color: #ffffff;
}
@keyframes fadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.page-wrapper > *:not(header) {
  animation: fadeSlideDown 0.8s ease forwards;
  animation-delay: 0.4s;
  opacity: 0; 
}

