.call {
    min-height: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-background);
    color: white;
    margin-top: 20px;
    padding-bottom: 20px;
  }
  
  .call-container {
    height: 70%;
    width: 100%;
    margin: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 90px;
  }
  
  .call-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 50%;
  }
  
  .map {
    margin-left: 80px;
    display: flex;
    align-items: end;
    width: 50%;
  }

  .call-title {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--primary-font-family);
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .call-description {
    font-family: var(--secondary-font-family);
    line-height: 1.6;
    margin-bottom: 5px;
    font-weight: 300;
    letter-spacing: 0.3px;
  }
  
  .call-description_2 {
    font-family: var(--secondary-font-family);
    font-style: italic;
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 0.2px;
    opacity: 0.9;
  }
  
  .call-button {
    height: 50px;
    background: linear-gradient(135deg, var(--brand) 0%, #9597a0 100%);
    color: white;
    font-family: var(--primary-font-family);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1.2px;
    padding: 10px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    width: 200px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    gap: 10px;
  }
  
  .call-button-icon {
    transition: transform 0.3s ease;
  }
  
  .call-button:hover .call-button-icon {
    transform: rotate(-15deg) scale(1.1);
  }

  .call-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
  }
  
  .call-button:hover {
    background: linear-gradient(135deg, #9597a0 0%, var(--brand) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }
  
  .call-button:hover:before {
    left: 100%;
  }
  
  .call-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  @media (max-width: 1200px) {
    .call-container {
      flex-direction: column;
      gap: 30px;
    }
  
    .call-title {
      text-align: center;
    }
  
    .call-description {
      text-align: center;
    }

    .call-left, .map {
      width: 100%;
    }

    .map {
      margin-left: 0;
    }
    
    .call-description_2 {
      text-align: center;
    }
  }

  /* Медиа-запросы для планшетов */
  @media (max-width: 768px) {
    .call-container {
      margin: 20px;
      gap: 20px;
    }

    .call-left {
      gap: 25px;
    }

    .call-title {
      font-size: 24px;
    }

    .map {
      margin-left: 0;
      width: 100%;
      display: flex;
      justify-content: center;
    }

    .map iframe {
      width: 100%;
      max-width: 500px;
    }
  }

  /* Медиа-запросы для мобильных устройств */
  @media (max-width: 480px) {
    .call-container {
      margin: 15px;
      gap: 15px;
    }

    .call-left {
      gap: 15px;
    }

    .call-title {
      font-size: 20px;
      line-height: 1.3;
    }

    .call-description {
      font-size: 14px;
      line-height: 1.4;
    }

    .call-description_2 {
      font-size: 12px;
    }

    .call-button {
      height: 45px;
      font-size: 14px;
      padding: 8px 20px;
      width: 180px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
    }

    .map iframe {
      height: 250px;
    }
  }