#page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#content-wrap {
  flex: 1;
}

#footer {
  /* Ваши стили для футера */
}

.footer {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: var(--background-color-light);
}

.footer__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border-2);
    margin-bottom: 20px;
}

.footer__title {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  flex-shrink: 0;
}

.footer__phone {
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease-in-out;
}

.footer__phone:hover {
  color: var(--color-accent-blue);
}

.footer__copyright {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.link-development {
    margin-top: 20px;
}

@media (max-width: 1199px) {
   .footer {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (max-width: 991px) {
   .footer {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .footer__container {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .link-development {
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
   .footer {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .link-development {
        margin-top: 10px;
    }
}

@media (max-width: 575px) {
   .footer {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .footer__copyright {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .link-development {
        margin-top: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}