/* Footer Section */
.footer-section {
  background-color: #2c6e49;
  color: #ffffff;
  padding: 48px 16px;
  font-family: 'Times New Roman', Times, serif;
  text-transform: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.branding-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  text-transform: none !important;
}

.branding-icon {
  width: 24px;
  height: 24px;
  text-transform: none;
}

.branding-text {
  font-size: 20px;
  font-weight: 700;
  text-transform: none;
}

.branding-description {
  color: #e9f5db;
  margin-bottom: 16px;
  line-height: 1.5;
  margin-right: 38px;
  text-transform: none;
}

.social-container {
  display: flex;
  gap: 16px;
  text-transform: none;
}

.social-button {
  background-color: transparent;
  color: #ffffff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  text-transform: none;
}

.social-button:hover {
  color: #e9f5db;
  background-color: #214e36;
  text-transform: none;
}

.links-title,
.contact-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: none;
}

.links-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style-type: none;
  font-size: 16px;
  line-height: 1.5;
  text-transform: none;
}

.link-item {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  text-transform: none;
}

.link-item:hover {
  color: #e9f5db;
  text-transform: none;
}

.contact-address {
  font-style: normal;
  color: #ffffff;
  line-height: 1.6;
  text-transform: none;
}

.address-item {
  margin-bottom: 8px;
  text-transform: none;
}

.copyright {
  border-top: 1px solid #4d8b6c;
  margin-top: 32px;
  padding-top: 32px;
  text-align: center;
  color: #e9f5db;
  font-size: 14px;
  text-transform: none;
}

.link-logo{
  margin-left: 20px;
  margin-top: -20px;
  width: 240px;
  height: 240px;
  text-transform: none;
}

ul {
  padding-left: 0;
  text-transform: none;
}

.footer-section a {
    font-family: 'Times New Roman', Times, serif;
    text-transform: none;
}