* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: #333;
  background-color: #efefef;
}

header {
  background: #2c405c;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  flex-wrap: wrap;
}

.logo img {
  height: 60px;
}

.nav-buttons a {
  color: white;
  text-decoration: none;
  margin-left: 1rem;
  font-weight: bold;
}

.contact-section {
  max-width: 600px;
  margin: 4rem auto;
  background: white;
  padding: 3rem 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.contact-section h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #2c405c;
}

.contact-section h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.contact-form label {
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-form button {
  background: #deb34f;
  color: white;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  align-self: center;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #c9a43d;
}

footer {
  background: white;
  padding: 4rem 2rem;
  color: #233b5d;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-left {
  text-align: left;
  flex: 1 1 300px;
}

.footer-left img {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-left p {
  margin: 0;
  max-width: 400px;
  color: #233b5d;
  font-size: 1rem;
}

.footer-right {
  text-align: right;
  flex: 1 1 200px;
}

.footer-button {
  display: inline-block;
  background: #deb34f;
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
}
.footer-bottom {
  border-top: 1px solid #ddd;
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #233b5d;
}

.footer-bottom a {
  color: #deb34f;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
