.banner {
  background: url("/Pictures/ContactBanner.webp") no-repeat center 80% / cover;
}

/* 
.hero {
    height: 40vh;
    background-color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    color: white;
    padding: 20px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-content h2 {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.7);
} */
.contact-section {
  background-image: url("/Pictures/cables.webp");
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
}
.contact-wrapper {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}
.contact-wrapper h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}
.contact-wrapper p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
  text-align: center;
}
.contact-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 40px;
  height: 100%;
}
.left-container,
.right-container {
  flex: 1;
  max-width: 400px;
}
.left-container p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}
.left-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.right-container form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.right-container form input,
.right-container form textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.right-container form button {
  padding: 10px;
  font-size: 1rem;
  background-color: orange;
  color: black;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.right-container form button:hover {
  background-color: darkorange;
}
.contact-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.contact-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(92, 86, 86, 0.1);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.contact-icons a:hover {
  background-color: orange;
}

.contact-icons svg {
  fill: rgb(0, 0, 0);
}
@media (max-width: 768px) {
  .contact-section {
    padding: 40px 10px;
  }
  .contact-container {
    flex-direction: column;
    gap: 20px;
  }
  .left-container,
  .right-container {
    max-width: 100%;
  }
}
