/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

body {
  background-color: #FED16A;
  color: #000;
}

/* Header */
header {
  width: 100%;
  background-color: #000;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ccc;
}

.signin-btn {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.signin-btn:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
}

/* Page Title */
.page-title {
  text-align: center;
  padding: 80px 20px 40px;
}

.page-title h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-title p {
  font-size: 1.2rem;
  color: #555;
}

/* Contact Section */
.contact-section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 50px 20px 80px;
  gap: 40px;
}

.contact-form {
  background-color: #000;
  color: #fff;
  padding: 40px;
  border-radius: 15px;
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 15px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
}

.contact-form button {
  background-color: #fff;
  color: #000;
  padding: 12px;
  font-size: 1.1rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
}

.contact-info {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

/* Footer */
footer {
  background-color: #000;
  color: #fff;
  padding: 50px 20px 20px;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo h3 {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #ccc;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #fff;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    align-items: center;
  }

  .contact-form {
    width: 100%;
    padding: 30px 20px;
  }

  .contact-info {
    max-width: 100%;
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
