/* Базові стилі */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Avenir Next', sans-serif;
    background-color: #f5f5f7;
    color: #1d1d1f;
    line-height: 1.6;
    font-size: 16px;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Header */
  header {
    text-align: center;
    padding: 60px 20px;
  }
  
  header .logo {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
  }
  
  header .subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-top: 8px;
  }
  
  /* Заголовки секцій */
  h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    text-align: center;
    color: #000;
  }
  
  /* Інформаційні картки */
  .info-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  }
  
  .card .icon {
    margin-bottom: 16px;
  }
  
  .card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #000;
  }
  
  .card p {
    font-size: 1rem;
    color: #666;
  }
  
  /* Кнопки */
  .buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 90px 0;
  }
  
  .btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 12px;
    background-color: #0071e3;
    color: #fff;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  
  .btn:hover {
    background-color: #005bb5;
    transform: translateY(-2px);
  }
  
  .btn.primary {
    background-color: #ff9500;
  }
  
  .btn.primary:hover {
    background-color: #cc7a00;
  }
  
  /* SVG іконки */
  .card svg {
    width: 48px;
    height: 48px;
    stroke-width: 2.5;
    stroke: #ff6600;
    transition: stroke 0.3s ease;
  }
  
  .card:hover svg {
    stroke: #0071e3;
  }
  
  /* Адаптив */
  @media (max-width: 900px) {
    .info-cards {
      flex-direction: column;
      align-items: center;
    }
  
    .card {
      width: 90%;
    }
  }