.footer {
  width: 100%;
  min-height: 240px;
  background-color: #DFFFFD;
  font-family: 'Roboto', sans-serif;
  position: relative;
}

.footer_content {
  display: flex;
  justify-content: space-between; /* Spread 4 sections evenly */
  align-items: flex-start;
  gap: 32px;
  padding: 52px 82px 0 82px; /* Top and left/right padding */
  flex-wrap: wrap;
}

.footer_section h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.footer_section p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #383838;
  margin-bottom: 6px;
}

.logo_section .footer_logo {
  width: 81px;
  height: 26px;
  margin-bottom: 8px;
}

.logo_section .footer_description {
  font-size: 14px;
  line-height: 20px;
  color: #383838;
  margin-bottom: 12px;
}

.social_icons {
  display: flex;
  gap: 10px;
}

.social_icons svg {
  cursor: pointer;
  transition: fill 0.15s ease-out;
  will-change: fill;
}

.social_icons svg:hover {
  fill: #0ADBCD;
}

.footer_divider {
  border: none;
  height: 1px;
  background-color: #E1E1E1;
  margin: 20px 80px 0 80px;
}

.footer_copy {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #383838;
  text-align: center;
  margin-top: 22px;
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
  .footer_content {
    padding: 48px 64px 0 64px;
    gap: 28px;
  }

  .footer_divider {
    margin: 20px 64px 0 64px;
  }
}

@media (max-width: 992px) {
  .footer_content {
    padding: 44px 48px 0 48px;
    gap: 24px;
  }

  .footer_section h4 {
    font-size: 17px;
    line-height: 26px;
  }

  .footer_section p,
  .logo_section .footer_description {
    font-size: 15px;
    line-height: 24px;
  }

  .footer_divider {
    margin: 18px 48px 0 48px;
  }
}

@media (max-width: 768px) {
  .footer_content {
    padding: 40px 32px 0 32px;
    gap: 20px;
  }

  .footer_section {
    flex: 1 1 45%;
  }

  .footer_divider {
    margin: 18px 32px 0 32px;
  }
}

@media (max-width: 576px) {
  .footer {
    min-height: 220px;
  }

  .footer_content {
    flex-direction: column;
    padding: 32px 20px 0 20px;
    gap: 18px;
    align-items: center;
  }

  .footer_section,
  .logo_section {
    text-align: center;
  }

  .social_icons {
    justify-content: center;
  }

  .footer_divider {
    margin: 16px 20px 0 20px;
  }

  .footer_copy {
    font-size: 13px;
    line-height: 18px;
    margin-top: 16px;
  }
}
