@media (max-width: 768px) {
  .footer-section {
    background-color: #eae8e6;
    padding: 20px 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    position: relative;
  }
  
  @keyframes growLine {
    0% {
      width: 0;
    }
    100% {
      width: calc(100% - 10%);
    }
  }

  .footer-wrapper {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 20px;
  }
  
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .footer-contact-item {
    gap: 5px;
    font-size: 16px;
  }

  .footer-icon {
    width: 16px;
    height: 16px;
  }
  
  .footer-navigation {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }

  .footer-navigation .footer-link {
    font-size: 14px;
  }
  
  .footer-credits {
    margin-top: 50px;
  }
  
  .footer-logo {
    width: 50px;
    height: auto;
  }
  
}

@media (min-width: 769px) and (max-width: 1024px) {
  .footer-section {
    padding: 20px 0;
  }
  
  @keyframes growLine {
    0% {
      width: 0;
    }
    100% {
      width: calc(100% - 12%);
    }
  }
  
  .footer-wrapper {
    padding: 0 75px;
  }
  
  .footer-contact {
    gap: 20px;
  }
  
  .footer-contact-item {
    gap: 5px;
    font-size: 14px;
  }
  
  .footer-icon {
    width: 14px;
    height: 14px;
  }
  
  .footer-navigation {
    gap: 30px;
  }
  
  .footer-link {
    font-size: 12px;
  }
  
  .footer-link::after {
    bottom: -5px;
    left: 50%;
    height: 2px;
  }
  
  .footer-credits {
    margin-top: 80px;
  }

  .footer-logo {
    width: 40px;
  }
  
}

@media (min-width: 1025px) and (max-width: 1360px) {
  .footer-section {
    padding: 20px 0;
  }
  
  @keyframes growLine {
    0% {
      width: 0;
    }
    100% {
      width: calc(100% - 15%);
    }
  }
  
  .footer-wrapper {
    padding: 0 110px;
  }
  
  .footer-contact {
    gap: 40px;
  }
  
  .footer-contact-item {
    gap: 5px;
    font-size: 16px;
  }
  
  .footer-icon {
    width: 16px;
    height: 16px;
  }
  
  .footer-navigation {
    gap: 30px;
  }
  
  .footer-link {
    font-size: 14px;
  }
  
  .footer-link::after {
    bottom: -5px;
    left: 50%;
    height: 2px;
  }
  
  .footer-credits {
    margin-top: 80px;
  }
}

@media (min-width: 1361px) and (max-width: 1560px) {
  @keyframes growLine {
    0% {
      width: 0;
    }
    100% {
      width: calc(100% - 17%);
    }
  }
  
  .footer-wrapper {
    padding: 0 135px;
  }
}

@media (min-width: 1361px) {
  .footer-section {
    padding: 20px 0;
  }
  
  .footer-contact {
    gap: 40px;
  }
  
  .footer-contact-item {
    gap: 5px;
    font-size: 16px;
  }
  
  .footer-icon {
    width: 16px;
    height: 16px;
  }
  
  .footer-navigation {
    gap: 30px;
  }
  
  .footer-link {
    font-size: 14px;
  }
  
  .footer-link::after {
    bottom: -5px;
    left: 50%;
    height: 2px;
  }
  
  .footer-credits {
    margin-top: 100px;
  }
  
}

@media (min-width: 1561px) {
  @keyframes growLine {
    0% {
      width: 0;
    }
    100% {
      width: calc(100% - 20%);
    }
  }
  
  .footer-wrapper {
    padding: 0 200px;
  }
}