:root {
      --font: "Geist", "Geist Placeholder", sans-serif;
      --bg: #ffffff;
      --text: #111111;
      --muted: #666666;
      --accent: #e63946;
      --bar-dark: #111111;
      --bar-light: #e63946;
    }

  

    .comparison-section {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: center;
      justify-content: space-between;
      padding: 60px 200px;
    }

    .bars {
      flex: 1 1 300px;
      display: flex;
      align-items: flex-end;
      gap: 40px;
      height: 300px;
      position: relative;
    }

    .bar {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
      width: 100px;
      border-radius: 8px;
      color: #fff;
      padding: 10px;
      font-weight: 600;
      text-align: center;
    }

    .bar.agency {
      background: var(--bar-dark);
      height: 100%;
    }

    .bar.theme {
      background: var(--bar-light);
      height: 45%;
    }

    .bar-label {
      margin-top: 10px;
      font-size: 0.9rem;
      color: var(--bg);
    }

    .info {
      flex: 1 1 400px;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
    }

    .logo i {
      color: var(--accent);
    }

    .info h3 {
      font-size: 1.8rem;
      margin-bottom: 16px;
    }

    .info p {
      font-size: 1rem;
      color: var(--muted);
      margin-bottom: 24px;
    }

    .btn2 {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--bg);
      border: 1px  solid var(--bar-dark);
      color: var(--text);
      padding: 12px 20px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .comparison-section {
        flex-direction: column;
        gap: 60px;
      }

      .bars {
        justify-content: center;
      }

      .info {
        text-align: center;
      }
    }

    @media (max-width: 1024px) {
  .comparison-section {
    padding: 60px 60px;
  }
}

@media (max-width: 768px) {
  .comparison-section {
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
  }

  .bars {
    justify-content: center;
    height: 220px;
    gap: 24px;
  }

  .bar {
    width: 80px;
    padding: 8px;
    font-size: 0.9rem;
  }

  .bar-label {
    font-size: 0.8rem;
  }

  .info {
    text-align: center;
    flex: 1 1 100%;
  }

  .info h3 {
    font-size: 1.5rem;
  }

  .info p {
    font-size: 0.95rem;
  }

  .btn2 {
    font-size: 0.95rem;
    padding: 10px 18px;
  }
}
