html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 🌿 FOOTER STYLING */
.site-footer {
  background: linear-gradient(135deg, #000000, #013e3c);
  color: white;
  font-family: 'Montserrat', sans-serif;
  border-top: 3px solid rgba(255, 255, 255, 0.15);
}

.top-border {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  margin: 25px 0;
}

.foot-top {
  padding: 50px 5vw;
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid rgba(255, 255, 255, 0.94);
  padding-bottom: 40px;
}

.logo-row {
  display: flex;
}

.title-group {
  margin-left: 60px;
}

.foot-left {
  max-width: 80%;
}

.left-logo {
  width: 110px;
  margin-bottom: 30px;
}

.main-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 5px;
}

.sub-title {
  font-size: 22px;
  color: #72ff90;
  font-weight: 600;
  margin-bottom: 30px;
}

.contact-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
  font-size: 18px;
}

.contact-box p {
  display: flex;
  align-items: center;
}

.icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  filter: invert(100%);
}

.highlight-text {
  color: #72ff90;
}

.cds-site {
  margin-top: 25px;
  font-size: 18px;
}

.cds-site a {
  color: #f8c94a;
  text-decoration: none;
}

.foot-right {
  text-align: right;
}

.right-logo {
  width: 70%;
  margin-bottom: 20px;
  border: transparent;
  border-radius: 50px;
}

.foot-right a {
  color: white;
  font-size: 18px;
  text-decoration: none;
  margin: 6px 0;
  display: inline-block;
  transition: 0.3s;
}

.foot-right a:hover {
  color: #f8c94a;
}

.website-link a {
  color: #72ff90;
  font-weight: 700;
  margin-top: 15px;
}

.foot-bottom {
  text-align: right;
  font-size: 20px;
  padding: 20px 100px;
}

/* ✅ Responsive Footer */
@media (max-width: 900px) {
  .foot-top {
    flex-direction: column;
    gap: 40px;
    text-align: left;
  }
  .right-logo {
    width: 50%;
  }

  .logo-row {
    display: block;
  }

  .title-group {
    margin-left: 0;
  }

  .foot-bottom {
    text-align: center;
    font-size: 15px;
  }
  .main-title {
    font-size: 25px;
  }
  .sub-title {
  font-size: 16px;
}
.contact-box p {
  font-size: 15px;
}
.foot-right a {
  font-size: 15px;
}
}
