.contact-page-section {
  padding: 60px 0;
  font-family: "Outfit", sans-serif;
  background-color: #f9f9f9;
}
.contact-page-section .contact-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.contact-page-section .contact-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 25px;
  transition: transform 0.3s ease;
  border: 1px solid #f0f0f0;
  width: calc(50% - 10px);
}
.contact-page-section .contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.contact-page-section .contact-card .icon-box {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
}
.contact-page-section .contact-card .icon-box.phone-icon {
  background: linear-gradient(135deg, #ff6b6b, #ee5253);
  box-shadow: 0 4px 10px rgba(238, 82, 83, 0.3);
}
.contact-page-section .contact-card .icon-box.email-icon {
  background: linear-gradient(135deg, #48dbfb, #0abde3);
  box-shadow: 0 4px 10px rgba(10, 189, 227, 0.3);
}
.contact-page-section .contact-card .icon-box.location-icon {
  background: linear-gradient(135deg, #ff9f43, #ee5253);
  box-shadow: 0 4px 10px rgba(255, 159, 67, 0.3);
}
.contact-page-section .contact-card .icon-box.time-icon {
  background: linear-gradient(135deg, #1dd1a1, #10ac84);
  box-shadow: 0 4px 10px rgba(16, 172, 132, 0.3);
}
.contact-page-section .contact-card .content-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: #888;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}
.contact-page-section .contact-card .content-box p,
.contact-page-section .contact-card .content-box a {
  font-size: 18px;
  font-weight: 500;
  color: #2c3e50;
  margin: 0;
  text-decoration: none;
  line-height: 1.4;
}
.contact-page-section .contact-card .content-box a:hover {
  color: #007bff;
}
.contact-page-section .map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: 450px;
  background: #fff;
  border: 5px solid #fff;
}
.contact-page-section .map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}