@media screen and (max-width: 767px) {
  .footer {
    font-family: Arial, sans-serif;
    padding: 20px 15px;
    background-color: var(--bg-footer);
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin: 0 auto;
    gap: 30px;
    background-color: transparent;
  }

  .footer-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    order: 2;
  }

  .footer-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    order: 1;
  }

  .copyright {
    font-size: clamp(12px, 3vw, 18px);
    margin-bottom: 15px;
  }

  .footer-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 10px 0;
    width: 100%;
  }

  .cookies-settings button {
    background: none;
    border: none;
    color: #717070;
    cursor: pointer;
    font-size: clamp(12px, 3vw, 14px);
    padding: 0;
    text-align: left;
  }

  .region-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .region {
    color: #717070;
    text-decoration: none;
    font-size: clamp(12px, 3vw, 14px);
  }

  .social-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .social-button {
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    color: #cfcfcf;
    font-size: clamp(12px, 3vw, 14px);
    min-width: 100px;
    flex: 1;
  }

  .footer-column {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-column h3 {
    font-size: clamp(16px, 4vw, 18px);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
  }

  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-column li {
    margin-bottom: 8px;
  }

  .footer-column a {
    color: #e2e1e1;
    text-decoration: none;
    font-size: clamp(14px, 3vw, 18px);
    transition: color 0.2s;
  }

  .footer-column a:hover {
    color: #007bff;
  }
}

@media screen and (min-width: 1024px),
screen and (min-width: 768px) and (max-width: 1023px) {
  .footer {
    font-family: Arial, sans-serif;
    padding: 40px;
    background-color: black;
    color: #ffffff;
  }

  .footer-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-left {
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .footer-right {
    width: 75%;
    display: flex;
    justify-content: space-between;
  }

  .copyright {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .footer-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 10px 0;
    width: 80%;
  }

  .cookies-settings button {
    background: none;
    border: none;
    color: #717070;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    text-align: left;
  }

  .region-selector {
    display: flex;
    gap: 15px;
  }

  .region {
    color: #717070;
    text-decoration: none;
    font-size: 14px;
  }

  .social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .social-button {
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 8px 20px;
    text-align: center;
    text-decoration: none;
    color: #cfcfcf;
    font-size: 14px;
    margin-bottom: 10px;
    width: 120px;
  }

  .footer-column {
    width: 25%;
  }

  .footer-column h3 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
  }

  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-column li {
    margin-bottom: 10px;
  }

  .footer-column a {
    color: #e2e1e1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }

  .footer-column a:hover {
    color: #007bff;
  }
}