* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f5f5f5;
  color: #333;
}
header {
  background-color: #f8f9fa; /* Change to your preferred background color */
  padding: 20px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Align items properly */
}

.logo img {
  max-width: 100px; /* Set a max width for the logo */
  height: auto;
  border-radius: 50%; /* This makes the logo rounded */
  border: 2px solid #ccc; /* Optional: adds a border around the logo */
  overflow: hidden; /* Ensures any overflow content is hidden */
}

.header-text {
  flex-grow: 1;
  text-align: center; /* Center align the title and subtitle */
}

.header-text h1 {
  font-size: 2em; /* Adjust font size as needed */
  margin: 0;
}

.header-text h2 {
  font-size: 1.2em; /* Adjust font size for subtitle */
  margin: 0;
  color: #666; /* Subtitle color */
}

.navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px; /* Space between navigation items */
}

.navigation a {
  text-decoration: none;
  color: #333; /* Navigation link color */
  padding: 5px 10px; /* Add padding for clickable area */
  transition: background-color 0.3s; /* Add transition for hover effect */
}

.navigation a:hover {
  background-color: #e2e2e2; /* Change background on hover */
  border-radius: 5px; /* Rounded corners */
}

.section {
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0057a0;
}

.description,
.policy,
.terms {
  padding: 1.5rem;
}

p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  p {
    font-size: 0.9rem;
  }
}
