.protection {
  margin: 0 auto;
  max-width: 900px;
  padding: 5rem 1rem;
  text-align: center;
  background: #fff;

  .protection-content {
    .aircover-logo {
      color: var(--kuida-main-color, #e04e53);
      font-weight: 700;
      font-size: 1.3rem;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .aircover-header {
      color: #222;
      font-weight: 700;
      font-size: 2.5rem;
      margin-bottom: 3rem;
      line-height: 1.2;
    }
  }

  .comparison-table {
    width: 100%;
    margin-bottom: 2.5rem;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

    th {
      color: #222;
      padding: 1.25rem 1rem;
      font-weight: 700;
      font-size: 1.1rem;
      text-align: center;
      border-bottom: 2px solid #e0e0e0;
      background: #f8f9ff;

      &:first-child {
        text-align: left;
        background: white;
      }
    }
    
    td {
      color: #222;
      padding: 1.25rem 1rem;
      font-size: 1rem;
      text-align: left;
      border-bottom: 1px solid #f0f0f0;

      &:first-child { 
        font-weight: 500;
        color: #444;
      }
    }

    tbody tr {
      transition: background 0.2s ease;

      &:hover {
        background: #f8f9ff;
      }

      &:last-child td {
        border-bottom: none;
      }
    }

    .checkmark, .cross { 
      font-size: 1.5rem; 
      text-align: center; 
    }

    .checkmark { color: #22c55e; }

    .cross { color: #ef4444; }
  }

  .info {
    color: #666;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .learn-more-button {
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    background: var(--kuida-main-color, #e04e53);
    text-decoration: none;
    display: inline-block;
    padding: 1rem 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(224, 78, 83, 0.3);

    &:hover { 
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(224, 78, 83, 0.4);
    }
  }

  @media (max-width: 768px) {
    padding: 3rem 1rem;

    .protection-content {
      .aircover-logo { font-size: 1.1rem; margin-bottom: 0.75rem; }

      .aircover-header { font-size: 1.75rem; margin-bottom: 2rem; }
    }

    .comparison-table {
      font-size: 0.85rem;

      th { 
        font-size: 0.95rem; 
        padding: 0.75rem 0.5rem; 
      }

      td { 
        font-size: 0.85rem; 
        padding: 0.75rem 0.5rem; 
      }

      .checkmark, .cross { font-size: 1.2rem; }
    }

    .info { font-size: 0.85rem; margin-bottom: 1.5rem; }

    .learn-more-button { 
      padding: 0.9rem 1.5rem; 
      font-size: 1rem; 
    }
  }
}