.network-contact-section {
  color: white;
  padding: 60px 0;
}

.network-box {
  background: #dbeeff;
  color: black;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.network-box h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.network-box img {
  max-width: 100%;
  border-radius: 12px;
}

.contact-box {
  background: #DCDBFF;
  color: black;
  padding: 30px;
  border-radius: 12px;
}

.contact-box h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #3F3C86;
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  padding: 10px 15px;
  margin-bottom: 15px;
  border: none;
  border-radius: 20px;
}

.contact-box textarea {
  resize: none;
  height: 100px;
}

.contact-box button {
  background: #3F3C86;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 20px;
  cursor: pointer;
  width: 100%;
}

.intl-note {
  text-align: center;
  font-size: 14px;
  margin-top: 15px;
}

.contact-info {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.book-btn {
  display: flex;
  justify-content: center;
  background: #3f3c86 !important;
  color: white !important;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;

}

@media (max-width: 768px) {
  .contact-info {
    text-align: center;
  }

  .book-btn {
    margin: 10px auto 0;
  }

}