/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #0a1f27; /* Dark blue background */
  color: white;
  min-height: 100vh; /* Ensure body takes up at least full viewport height */
  display: flex;
  flex-direction: column;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh; /* Center the main content while allowing scrolling */
  width: 100%;
  padding: 20rem; /* Add padding for better spacing */
}

/* Header */
header {
  text-align: center;
  margin-bottom: 2rem; /* Space below header */
  width: 100%;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 13rem;
}

.logo {
  width: 100px;
  height: auto;
  
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background 0.9s;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.header-text h1 {
  margin: 0.5rem 0;
  font-size: 2.5rem;
}

.header-text p {
  margin: 0;
  font-size: 1.2rem;
}

/* Main Content */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem; /* Spacing between sections */
  text-align: center;
}

/* Section Styles */
section {
  width: 100%;
  max-width: 800px;
  margin-bottom: 2rem;
}

section h2 {
  color: #56c1e0; /* Light blue headings */
  font-size: 2rem;
  margin-bottom: 1rem;
}

section p, ul {
  font-size: 1.1rem;
  margin: 0 auto;
}

ul {
  text-align: left;
  margin-top: 1rem;
  list-style: disc;
  padding-left: 1.5rem;
}

/* Features Section */
.features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature {
  background-color: rgba(0, 0, 0, 0.8); /* Darker box for content visibility */
  padding: 1.5rem;
  border-radius: 8px;
  width: 300px;
  text-align: left;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.feature:hover {
  background-color: white; /* Change to white on hover */
  color: #0a1f27; /* Text changes to match background */
}

/* Feedback Section */
#feedback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.feedback-form {
  display: none; /* Initially hidden */
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  max-width: 600px;
  padding: 1rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
}

.feedback-form textarea {
  height: 150px;
  resize: none;
}

/* Expanded Feedback */
#feedback.expanded .feedback-form {
  display: flex;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 2rem;
}
