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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 50px;
  height: 60px;
  align-items: center;
  text-align: center;
  background-color: aquamarine;
}

.navbar li {
  position: relative;
  height: 60px;
  top: 0%;
}

.logo {
  font-size: 28px;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}

.nav-links a:hover {
  color: #aaa;
}

/* Dropdown container */
.dropdown-content {
  display: none;
  position: absolute; /* makes it float below parent li */
  top: 100%; /* position below the parent */
  background: #777;
  min-width: 180px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  border-radius: 0px;
  z-index: 1000;
}

.dropdown-content a {
  padding: 10px;
  color: white;
  display: block; /* full clickable width */
}

.dropdown-content a:hover {
  background: #888;
}

/* Show dropdown on hover */
.navbar li:hover .dropdown-content {
  display: block;
}

.page-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: #000;
}

.company-title-container {
  text-align: center;
  margin: 40px 0;
  background-color: #000;
}
.company-title-container h1 {
  font-size: 60px;
  font-weight: bold;
}

/* Contact Section */
.contact {
  display: flex;
  justify-content: space-between;
  padding: 80px 50px;
  background-color: #000;
}

.contact-info {
  flex: 1;
  max-width: 50%;
}

.contact-info h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.contact-info h4 {
  font-size: 22px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #ccc;
}

.contact-info p {
  margin-bottom: 20px;
  font-size: 16px;
}

address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.8;
}

contacts {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.8;
}

contacts a {
  color: #fff;
  text-decoration: underline;
}

.socials a {
  color: #fff;
  margin-right: 15px;
  font-size: 18px;
}

/* Form */
.contact-form {
  flex: 1;
  max-width: 50%;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, select, textarea {
  padding: 12px;
  border: none;
  border-bottom: 1px solid #555;
  background: transparent;
  color: #fff;
  font-size: 16px;
  outline: none;
}

select option {
  padding: 12px;
  border: none;
  border-bottom: 1px solid #555;
  background: transparent;
  color: black;
  font-size: 16px;
  outline: none;
  appearance: none;
  -webkit-appearance: none; 
}

textarea {
  min-height: 100px;
  font-family: Arial, Helvetica, sans-serif;
  resize: none;
}

.captcha {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #aaa;
}

button {
  margin-top: 20px;
  padding: 12px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}

button:hover {
  color: #aaa;
}
