/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 11 2026 | 04:38:59 */
/*  */ 

 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    .seo2-wrapper {
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      padding: rem 2rem;
      font-family: 'DM Sans', sans-serif;
    }

    .seo2-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      align-items: stretch;
    }

    /* Badge */
    .seo2-badge {
      display: inline-block;
      font-family: 'Sora', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #1a5f3f;
      background: #d4f0e2;
      padding: 5px 14px;
      border-radius: 99px;
      margin-bottom: 1rem;
    }.seo2-badge-dark {
      display: inline-block;
      font-family: 'Sora', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #a3e4c1;
      background: rgba(163, 228, 193, 0.12);
      padding: 5px 14px;
      border-radius: 99px;
      margin-bottom: 1rem;
    }

    /* Card 1 - Light grey */
    .seo2-card-1 {
      background: #f5f4f0;
      border-radius: 20px;
      padding: 2.2rem;
      border: 1px solid #e2e0d8;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .seo2-heading-1 {
      font-family: 'Sora', sans-serif;
      font-size: 20px;
      font-weight: 600;
      color: #111;
      line-height: 1.35;
    } .seo2-para-1 {
      font-size: 18px;
      color: #555;
      line-height: 1.75;
    }

    /* Card 2 - Dark */
    .seo2-card-2 {
      background: #111;
      border-radius: 20px;
      padding: 2.2rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .seo2-heading-2 {
      font-family: 'Sora', sans-serif;
      font-size: 20px;
      font-weight: 600;
      color: #fff;
      line-height: 1.35;
    }

    .seo2-para-2 {
      font-size: 18px;
      color: #aaa;
      line-height: 1.75;
    }/* Card 3 - Light */
    .seo2-card-3 {
      background: #f5f4f0;
      border-radius: 20px;
      padding: 2.2rem;
      border: 1px solid #e2e0d8;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .seo2-heading-3 {
      font-family: 'Sora', sans-serif;
      font-size: 20px;
      font-weight: 600;
      color: #111;
      line-height: 1.35;
    }

    .seo2-para-3 {
      font-size: 18px;
      color: #555;
      line-height: 1.75;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .seo2-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .seo2-card-3 {
        grid-column: 1 / -1;
      } }

    @media (max-width: 600px) {
      .seo2-grid {
        grid-template-columns: 1fr;
      }
      .seo2-card-3 {
        grid-column: auto;
      }
      .seo2-wrapper {
        padding: 2.5rem 1.2rem;
      }
    }