.site-footer {
  background: #01332d; /* dark green from screenshot */
  color: #fff;
  padding: 60px 40px 20px;
  font-family: Arial, sans-serif;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}
.footer-left {
  flex: 1 1 300px;
  max-width: 400px;
}
.footer-logo {
  margin: 0 0 30px 0;
}
.footer-left p {
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 15px;
  color: #e5e5e5;
}
.footer-btn {
  background: #034C36;
  background: -webkit-linear-gradient(180deg, rgba(3, 76, 54, 1) 0%, rgba(0, 51, 50, 1) 100%);
  background: -moz-linear-gradient(180deg, rgba(3, 76, 54, 1) 0%, rgba(0, 51, 50, 1) 100%);
  background: linear-gradient(180deg, rgba(3, 76, 54, 1) 0%, rgba(0, 51, 50, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#034C36", endColorstr="#003332", GradientType=0);
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #F2E0DF;
  padding: 18px 25px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all linear 0.2s;
}
.footer-btn:hover {
  background: #0A8F4F;
  background: -webkit-linear-gradient(135deg, rgba(10, 143, 79, 1) 0%, rgba(13, 187, 103, 1) 100%);
  background: -moz-linear-gradient(135deg, rgba(10, 143, 79, 1) 0%, rgba(13, 187, 103, 1) 100%);
  background: linear-gradient(135deg, rgba(10, 143, 79, 1) 0%, rgba(13, 187, 103, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0A8F4F", endColorstr="#0DBB67", GradientType=0);
}
.footer-right {
  display: flex;
  gap: 60px;
  flex: 2;
  flex-wrap: wrap;
  padding: 0 0 0 40px;
}
.footer-col {
  flex: 1;
}
.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 400;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #e5e5e5;
  cursor: default;
}
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 14px;
  color: #ddd;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    display: block;
  }
  .footer-right {
    gap: 20px;
    padding: 0;
    margin: 40px 0 0 0;
  }
}
