body {
      font-family: "Geist", sans-serif;
      font-size: 20px;
      background-color: #1c1c1c;
      color: #fff;
      margin: 0;
      padding: 0;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .impact-text {
      font-family: "Impact", sans-serif;
      font-weight: 400;
      text-transform: uppercase;
    }

    .container {
      width: 1200px;
      background-color: #1c1c1c;
    }


    .filter-container {
      display: grid;
      grid-template-columns: repeat(2, 275px) 1fr 20%;
      gap: 12px;
      align-items: end;
      justify-content: flex-start;
      padding: 32px 42px 46px;
      border: 1px solid #333;
      border-radius: 12px;
      margin-bottom: 32px;
    }

    .filter-title {
      color: #9c9c9c;
      font-size: 16px;
    }

    .filter-select,
    .filter-input {
      padding: 18px 30px;
      border-radius: 6px;
      border: 1px solid #444;
      font-size: 16px;
      background: #ffffff;
      color: #000000;
      outline: none;
    }

    .filter-select {
      width: 275px;
    }

    .filter-input-group {
      display: flex;
      gap: 12px;
    }

    .filter-input {
      width: 100%;
      min-width: 0;
    }

    .filter-btn {
      padding: 13px 30px;
      border-radius: 6px;
      border: none;
      background: #CB2A2A;
      color: #fff;
      font-size: 24px;
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
    }

    .filter-btn:hover {
      background: #b71c1c;
    }

    /* Стили для модального окна */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(5px);
    }

    .modal-content {
      background-color: #fff;
      margin: 5% auto;
      padding: 40px;
      border-radius: 12px;
      width: 90%;
      max-width: 500px;
      position: relative;
      color: #000;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .close {
      color: #aaa;
      float: right;
      cursor: pointer;
      position: absolute;
      top: 15px;
      right: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    .close:hover,
    .close:focus {
      color: #000;
    }

    .modal-title {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 15px;
      text-transform: uppercase;
      color: #000;
    }

    .modal-description {
      color: #666;
      margin-bottom: 25px;
      font-size: 16px;
      line-height: 1.4;
    }

    .modal-form {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-bottom: 20px;
    }

    .modal-input {
      padding: 15px;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: 16px;
      outline: none;
      transition: border-color 0.3s;
    }

    .modal-input:focus {
      border-color: #CB2A2A;
    }

    .modal-buttons {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .modal-btn {
      flex: 1;
      padding: 15px 20px;
      background: #CB2A2A;
      color: #fff;
      border: none;
      border-radius: 6px;
      font-size: 20px;
      cursor: pointer;
      text-transform: uppercase;
      transition: background 0.3s;
    }

    .modal-btn:hover {
      background: #b71c1c;
    }

    .modal-btn-arrow {
      width: 52px;
      height: 53px;
      background: #CB2A2A;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
    }

    .modal-btn-arrow:hover {
      background: #b71c1c;
    }

    .arrow-icon {
      color: #fff;
      font-size: 20px;
      font-weight: bold;
    }

    .modal-footer {
      font-size: 12px;
      color: #666;
      text-align: center;
      margin-top: 15px;
    }

    .privacy-link {
      color: #CB2A2A;
      text-decoration: underline;
    }

    .privacy-link:hover {
      color: #b71c1c;
    }

    .cards-container {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .card {
      max-width: 380px;
      border-radius: 30px;
      border: 1px solid #444;
    }

    .card-img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      border-radius: 30px;
    }

    .card-info {
      display: flex;
      flex-direction: column;
      gap: 18px;
      padding: 27px 30px;
    }

    .card-title {
      color: #808080;
    }

    .button-container {
      display: flex;
      gap: 10px;
    }

    .btn {
      background: #CB2A2A;
      color: #fff;
      font-size: 18px;
      padding: 18px;
      border-radius: 6px;
      transition: background 0.2s;
    }

    .btn:hover {
      background: #b71c1c;
    }

    .btn-arrow {
      background: #CB2A2A;
      padding: 10px 12px;
      border-radius: 6px;
      transition: background 0.2s;
    }

    .btn-arrow:hover {
      background: #b71c1c;
    }

    .btn-icon {
      width: 33px;
    }


    @media (max-width: 480px) {
      .container {
        width: auto;
        min-width: 320px;
        padding: 0 22px 36px;
      }

      .filter-container {
        grid-template-columns: 1fr;
        display: grid;
        gap: 15px;
        padding: 25px;
      }

      .filter-select {
        width: 100%;
      }

      .filter-btn {
        width: 100%;
        font-size: 20px;
      }

      .cards-container {
        display: flex;
        flex-direction: column;
      }

      .card-info {
        padding: 25px;
      }

      .card-img {
        height: 260px;
      }

      .btn {
        font-size: 13px;
        padding: 12px;
      }

      .btn-arrow {
        width: 50px;
        height: 50px;
      }

      .btn-icon {
        width: 18px;
      }
    }