/* Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: white;
  color: #000;
}

/* Navbar */
.navbar {
  background-color: white;
  color: black;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
  text-decoration: none;
  color: black;
}

.menu a {
  color: black;
  text-decoration: none;
  margin-left: 20px;
  position: relative;
}

.menu a:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -12px;
    color: #000;
}

.menu a:hover {
  text-decoration: underline;
}

/* Contact Section */
.contact-container {
  background-color: white;
  max-width: 1000px;
  margin: 40px auto;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 250px;
}

.contact-info h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 20px;
  line-height: 1.5;
}

.contact-info a {
  color: #000;
  text-decoration: none;
}

.contact-form {
  max-width: 800px;
  margin: auto;
  font-family: sans-serif;
}

.input-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.input-row span {
  flex: 1;
}

.input-row label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.input-row input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
}

.textarea-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.textarea-row label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.textarea-row textarea {
  width: 100%;
  height: 150px;
  padding: 10px;
  font-size: 16px;
  resize: vertical;
}

.textarea-row button {
  background-color: orange;
  border: none;
  color: black;
  padding: 10px;
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
  width: 150px;
  height: 150px;
  align-self: center;
}




.submit-btn:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background-color: white;
  border-top: 1px solid #ccc;
  padding-top: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding: 30px 40px;
  margin-top: 60px;
  font-size: 0.9rem;
}

.footer-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-info div {
  margin-bottom: 20px;
}

.footer-info a {
  color: #000;
  text-decoration: none;
}

.footer-copy {
  text-align: center;
  margin-bottom: 20px;
  color: #555;
}

.socials a img {
  width: 20px;
  margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  header {
        flex-direction: column;
    }
  .contact-container {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }

  .submit-btn {
    align-self: center;
    margin-top: 10px;
  }

  .footer-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
