.contact-banner {
  min-height: 345px;
  width: 100%;
  background-image: url("/Media/Background/contactUs00.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.banner-overlay {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.contact-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.banner-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-subtitle {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.banner-divider {
  width: 100px;
  height: 3px;
  background: #f9a01b;
  margin: 0 auto 20px;
}

.banner-text {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: -50px;
  position: relative;
  z-index: 3;
}

.contact-box {
  background-color: #eaeaea;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-container {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

:root {
  --section-padding: 5rem;
}

.contact-container {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.box-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #f9a01b;
}

.box-title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  position: relative;
}

.box-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #f9a01b;
  margin: 10px auto;
  border-radius: 2px;
}

.box-description {
  color: #666;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* Icon Links */
.icon-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: auto;
}

.icon-links.row-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.icon-links.row-center .contact-label {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.icon-links.row-center img {
  width: 60px;
  height: auto;
}

.icon-links img {
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease;
}

.icon-links img:hover {
  transform: scale(1.1);
}

.contact-box p {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.5;
}

.icon-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

.box-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 50px;
  background-color: transparent;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .contact-banner {
    min-height: 300px;
  }

  .banner-title {
    font-size: 2rem;
  }

  .banner-subtitle {
    font-size: 1.2rem;
  }
}

@media (min-width: 1200px) {
  .contact-banner {
    min-height: 300px;
  }
}