﻿body
{
.contact-hero {
  background-color: #fde06f;
  padding: 60px 20px;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-left, .contact-right {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-logo {
  width: 60px;
  margin-bottom: 10px;
}

.contact-left h2,
.contact-right h2 {
  font-size: 26px;
  font-weight: 700;
  color: #006f4b;
}

.contact-left h2 span {
  color: #e3b800;
  font-size: 24px;
}

.subtext {
  margin: 12px 0 20px;
  font-size: 17px;
  color: #004c3f;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  color: #006f4b;
}

.centered {
  justify-content: flex-start;
}

.contact-detail i {
  font-size: 20px;
  color: #006f4b;
}

.contact-detail a {
  text-decoration: none;
  color: #006f4b;
}

@media screen and (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .contact-left, .contact-right {
    align-items: center;
  }

  .contact-detail.centered {
    justify-content: center;
  }

  .contact-logo {
    align-self: flex-start;
  }
}
.contact-detail a {
  text-decoration: none;
  color: #006f4b;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 700;
}

.contact-detail a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #006f4b;
  transition: width 0.3s;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.contact-detail a:hover {
  color: #004c3f;
}

.contact-detail a:hover::after {
  width: 100%;
}

.contact-detail i {
  font-size: 22px;
  color: #006f4b;
  transition: transform 0.3s ease;
}

.contact-detail:hover i {
  transform: scale(1.2) rotate(-3deg);
}




}