body {
  margin: 0;
  background: #f4f4f4;
}

.footer-container {
  background: #f4f4f4;
  padding: 40px 20px 0;
  color: #0b4b66;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-left {
  flex: 1 1 40%;
}

.footer-left h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.footer-left .desc {
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
}

.contact-info p {
  margin: 10px 0;
  font-size: 15px;
}

.contact-info i {
  margin-right: 10px;
  color: #47cdff;
  
}

.footer-right {
  flex: 1 1 50%;
}

.footer-right form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-right input,
.footer-right textarea {
  width: 96%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.footer-right textarea {
  resize: none;
  height: 100px;
}

.footer-right button {
  background-color: #47cdff;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.3s ease;
  margin-top: 5px;
}

.footer-right button:hover {
  background-color: #2cbbe6;
}

.footer-map iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
  border-radius: 8px 8px 0 0;
}

.footer-map {
  width: 100%;
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
  background-color: #47cdff;
  padding: 20px 0;
  text-align: center;
  border-radius: 0 0 6px 6px;
}

.footer-bottom a {
  margin: 0 10px;
  color: #fff;
  font-size: 18px;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #0b4b66;
  border-radius: 50%;
  transition: background 0.3s;
  text-decoration: none;
}

.footer-bottom a:hover {
  background-color: #012a3b;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
  }
}
