@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

body {
      background-color: #1e1e1e;
      font-family: 'Inter', sans-serif;
      color: white;
      margin: 0;
      padding: 50px 20px;
    }

    h2 {
      text-align: center;
      color: #4ba3f2;
      font-size: 32px;
		margin-top: 100px;
      margin-bottom: 60px;
    }

    .timeline {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      max-width: 1100px;
      margin: 0 auto;
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 115px;
      top: 0;
      bottom: 0;
      width: 2px;
      background-color: white;
      z-index: 0;
    }

    .step {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 80px;
      position: relative;
      width: 100%;
    }

    .left-column {
      width: 140px;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: center;
    }

    .step-button-wrapper {
      display: flex;
      align-items: center;
      position: relative;
      height: 40px;
    }

    .step-button {
      background-color: #111;
      color: white;
      padding: 8px 20px;
      border-radius: 3px;
      font-weight: bold;
      text-align: center;
      transition: background-color 0.3s, color 0.3s;
      z-index: 2;
    }

    .line-wrapper {
      position: relative;
      width: 50px;
      height: 2px;
      background-color: white;
      margin-left: 10px;
    }

    .circle {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background-color: white;
      position: absolute;
      left: 115px;
      top: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
    }

    .step-content {
      display: flex;
      align-items: center;
      gap: 30px;
      margin-left: 60px;
    }

    .step-image {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      transition: filter 0.3s;
    }

    .step-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .step-text {
      max-width: 600px;
    }

    .step-title {
      font-weight: bold;
      font-size: 18px;
      margin-bottom: 8px;
    }

    .step-description {
      font-size: 15px;
      line-height: 1.5;
    }

    .step:hover .step-button {
      background-color: #4ba3f2;
      color: #000;
    }

    .step:hover .step-image {
      filter: brightness(1.2);
    }

    /* Адаптив */
    @media (max-width: 768px) {
      .timeline::before {
        display: none;
      }

      .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .left-column {
        width: auto;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
      }

      .step-button-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }

      .step-button {
        margin-bottom: 10px;
      }

      .line-wrapper {
        width: 2px;
        height: 40px;
        margin: 0;
      }

      .circle {
        position: static;
        margin: 10px auto;
      }

      .step-content {
        flex-direction: column;
        align-items: center;
        margin-left: 0;
        gap: 20px;
      }

      .step-text {
        max-width: 100%;
      }
    }



