/* =========================
   Terms page only
========================= */

body {
    margin: 0;
    font-family: 'Figtree', system-ui, sans-serif;
    font-size: 14px;
  }
  
  /* FV */
  .terms-page .fv {
    background: linear-gradient(to right, #9c1d52, #004035);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
  }
  
  .terms-page .fv-title {
    font-size: 28px;
    font-weight: 700;
  }
  
  @media (max-width: 768px) {
    .terms-page .fv {
      padding: 60px 20px;
    }
  
    .terms-page .fv-title {
      font-size: 20px;
    }
  }


  /* =========================
   Terms Section
========================= */

.terms-section {
    padding: 80px 20px;
  }
  
  .terms-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .terms-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 48px;
  }
  
  /* grid */
  .terms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  
  /* card */
  .terms-card {
    background: #f3f3f3;
    border-radius: 20px;
    padding: 32px;
  }
  
  .terms-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
  }
  
  /* list */
  .terms-card ul {
    padding-left: 18px;
  }
  
  .terms-card li {
    margin-bottom: 10px;
    line-height: 1.7;
  }
  
  .terms-card .note {
    font-size: 14px;
    color: #666;
    list-style: none;
    margin-left: -18px;
  }
  
  /* =========================
     Responsive
  ========================= */
  
  @media (max-width: 900px) {
    .terms-grid {
      grid-template-columns: 1fr;
    }
  
    .terms-card {
      padding: 24px;
    }
  
    .terms-title {
      font-size: 24px;
      margin-bottom: 32px;
    }

    .terms-section {
        padding: 32px 20px;
      }
  }


  /* =========================
   Certificates
========================= */

.terms-cert-section {
    padding: 80px 20px;
    background: #f6f6f5;
  }
  
  .terms-cert-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .terms-cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  
  .terms-cert-item {
    text-align: center;
  }
  
  .terms-cert-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
  }
  
  .terms-cert-image {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  }
  
  /* ===== SP ===== */
  @media (max-width: 768px) {
    .terms-cert-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .terms-cert-section {
        padding: 40px 16px;
    }
  
    .terms-cert-title {
      font-size: 15px;
    }

    .terms-cert-image {
      max-width: 100%;
    }
  }
  
  