.contact-sec {
  margin-bottom: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  background-color: #00263e;
  align-items: center;
  width: 100%;
}

.form-section {
  flex: 1;
  height: 60vh;
  width: 100%;
}

.form-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.form-header h2 {
  font-size: 1.5rem;
  color: #1a1a1a;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.form-group label {
  font-size: 0.9rem;
  color: #1a1a1a;
}

.form-group input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  padding: 10px 20px;
  background-color: #e60000;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

button:hover {
  background-color: #b80000;
}

.info-section {
  display: flex;
  justify-content: space-around;
  flex: 1;
  color: #fff;
  border-radius: 0 20px 20px 0;
  padding: 20px;
  text-align: center;
  align-items: center;
}

.info-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.info-text {
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-text {
  width: 100%;
}


@media (max-width:768px) {
  .contact-container {
    flex-direction: column;
    width: 90%;
    height: 90vh;
  }

  .info-section {
    display: flex;
    gap: 20px;
  }
}