
  .tv-adv-section {
    padding: 40px 32px;
    background-color: #fbf9f8;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }

  .tv-adv-inner {
    max-width: 1280px;
    margin: 0 auto;
  }

  .tv-adv-header {
    text-align: center;
    margin-bottom: 64px;
  }

  .tv-adv-header h2 {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1b1c1c;
    letter-spacing: -0.02em;
    margin: 0 0 16px 0;
  }

  .tv-adv-header p {
    color: #414754;
    font-size: 1rem;
    margin: 0;
  }

  .tv-adv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  @media (min-width: 768px) {
    .tv-adv-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .tv-adv-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .tv-adv-icon-wrap {
    width: 64px;
    height: 64px;
    background-color: #d8e2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0057bf;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }

  .tv-adv-card:hover .tv-adv-icon-wrap {
    transform: scale(1.1);
    background-color: #aec6ff;
  }

  .tv-adv-icon-wrap .tv-icon {
    font-family: 'Material Symbols Outlined';
    font-size: 30px;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    line-height: 1;
  }

  .tv-adv-card h3 {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #1b1c1c;
    margin: 0;
  }

  .tv-adv-card p {
    font-size: 0.875rem;
    color: #414754;
    margin: 0;
    line-height: 1.6;
  }
