* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #111;
  color: #fff;
}

.contact-section {
  padding: 60px 20px;
  background: url(https://www.shutterstock.com/image-vector/contact-us-background-eps-vector-600nw-2491405611.jpg) no-repeat center center/cover;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.container {
  position: relative;
  max-width: 1100px;
  margin: auto;
  z-index: 2;
  text-align: center;
}

.contact-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-section p {
  color: #ccc;
  margin-bottom: 40px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.info-box {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.info-box i {
  font-size: 24px;
  background: #00ffff;
  color: #000;
  padding: 15px;
  border-radius: 50%;
  margin-right: 15px;
}

.info-box h4 {
  color: #00ffff;
  font-size: 18px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background: #fff;
  color: #000;
  padding: 30px;
  border-radius: 10px;
}

.contact-form h3 {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form button {
  background: #00ffff;
  border: none;
  padding: 12px 25px;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-info,
  .contact-form {
    min-width: 100%;
  }

  .contact-section h2 {
    font-size: 28px;
  }

  .contact-section p {
    font-size: 16px;
    padding: 0 10px;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-form h3 {
    font-size: 22px;
  }

  .contact-form button {
    width: 100%;
  }

  .info-box {
    flex-direction: row;
    align-items: flex-start;
  }

  .info-box i {
    font-size: 20px;
    padding: 12px;
    margin-right: 12px;
  }

  .info-box h4 {
    font-size: 16px;
  }
}



.contact-form button:hover {
  background: #0f0141;
color: white;
}