* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.logo {
  width: 720px;
  height: auto;
  margin-bottom: 20px;
}

body {
  min-height: 100vh;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
}

.container {
  flex: 1;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.hero {
  background-color: #007bff;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.hero h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1em;
  opacity: 0.9;
}

/* Navigation */
nav ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 3rem;
}

main h2 {
  text-align: center;
  margin-top: 40px;
  font-size: 1.8em;
}

main p {
  text-align: center;
  font-size: 1.1em;
  opacity: 0.8;
  margin-bottom: 40px;
}

form {
  max-width: 600px;
  margin: auto;
  background-color: #f4f4f4;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-group textarea {
  min-height: 150px;
}

.form-group button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 1.2em;
  cursor: pointer;
  width: 100%;
  border-radius: 5px;
}

.form-group button:hover {
  background-color: #0056b3;
}

.btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
  background-color: #4a90e2;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background-color: #357ab8;
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(1px);
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: #fff;
  margin-top: 40px;
  position: relative;
  width: 100%;
}

footer p {
  font-size: 0.9em;
}

/* Mobile View */
@media screen and (max-width: 768px) {
  .form-group button {
    font-size: 1em; /* Adjust button font size */
  }
  
  .form-group input,
  .form-group textarea {
    font-size: 0.9em;
  }

  footer p {
    font-size: 0.8em;
  }
  
        .logo {
  width: 320px;
}

nav ul li a {
  font-size: 1.6rem;
}
}