    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    body {
      background-color: #ffffff;
      color: #1a1e2b;
      line-height: 1.5;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* header / nav */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
      flex-wrap: wrap;
      gap: 16px 32px;
      border-bottom: 1px solid #eef2f6;
      position: relative;
    }

    .logo img {
      height: 70px;
      width: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      gap: 24px;
      font-weight: 500;
      flex-wrap: wrap;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      color: #2d3748;
      font-size: 16px;
      transition: color 0.2s;
      white-space: nowrap;
      padding: 8px 0;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: #2e6b3e;
      border-bottom: 2px solid #2e6b3e;
      padding-bottom: 6px;
    }

    .btn-consult {
      background: #2e6b3e;
      color: white !important;
      padding: 12px 28px;
      border-radius: 40px;
      font-weight: 600;
      font-size: 15px;
      border: none;
      cursor: pointer;
      transition: background 0.2s;
      text-decoration: none;
      display: inline-block;
      white-space: nowrap;
      text-align: center;
    }

    .btn-consult:hover {
      background: #1e4a3a;
    }

    .btn-consult.mobile-btn {
      display: none;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      padding: 10px 5px;
      z-index: 1100;
    }

    .hamburger span {
      height: 3px;
      width: 28px;
      background: #2e6b3e;
      margin: 3px 0;
      border-radius: 3px;
      transition: 0.3s;
    }

    /* page header */
    .page-header {
      text-align: center;
      margin: 60px 0 30px;
    }

    .page-header h1 {
      font-size: 48px;
      font-weight: 800;
      color: #0b1f33;
      line-height: 1.2;
    }

    .page-header p {
      font-size: 20px;
      color: #4b5a6e;
      max-width: 800px;
      margin: 16px auto 0;
    }

    /* sections */
    .section-title {
      text-align: center;
      margin: 70px 0 30px;
    }

    .section-title h2 {
      font-size: 38px;
      color: #0b1f33;
      font-weight: 700;
      line-height: 1.2;
    }

    .section-title p {
      font-size: 18px;
      color: #4b5a6e;
      max-width: 650px;
      margin: 12px auto 0;
      padding: 0 16px;
    }

    /* pricing cards */
    .pricing-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
      margin: 40px 0;
    }

    .pricing-card {
      background: white;
      border-radius: 36px;
      padding: 36px 28px;
      box-shadow: 0 18px 35px -10px rgba(0,64,32,0.12);
      flex: 1 1 280px;
      border: 1px solid #e2eaf2;
      transition: all 0.2s;
    }

    .pricing-card.featured {
      border: 2px solid #2e6b3e;
      transform: scale(1.02);
      background: #f4fbf7;
    }

    .pricing-name {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .pricing-price {
      font-size: 40px;
      font-weight: 800;
      color: #1e4a3a;
      margin: 15px 0;
      line-height: 1.2;
      word-break: break-word;
    }

    .pricing-price small {
      font-size: 15px;
      font-weight: 400;
      color: #62748c;
    }

    .pricing-features {
      list-style: none;
      margin: 20px 0 30px;
    }

    .pricing-features li {
      padding: 8px 0;
      border-bottom: 1px dashed #d0deeb;
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .pricing-features i {
      color: #2e6b3e;
      width: 20px;
      flex-shrink: 0;
    }

    /* comparison table */
    .table-wrapper {
      overflow-x: auto;
      margin: 50px 0;
      border-radius: 30px;
      background: #f4fbf7;
      padding: 20px;
    }

    .compare-table {
      width: 100%;
      border-collapse: collapse;
      background: white;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 10px 25px -8px rgba(0,64,32,0.1);
    }

    .compare-table th {
      background: #1e4a3a;
      color: white;
      font-weight: 600;
      font-size: 18px;
      padding: 20px 15px;
      text-align: center;
    }

    .compare-table td {
      padding: 16px 15px;
      border-bottom: 1px solid #e6edf4;
      text-align: center;
      color: #2d3748;
    }

    .compare-table tr:last-child td {
      border-bottom: none;
    }

    .compare-table .feature {
      font-weight: 600;
      text-align: left;
      color: #1a3a2a;
    }

    .compare-table .yes {
      color: #2e6b3e;
      font-weight: 600;
    }

    .btn-small {
      background: #2e6b3e;
      color: white;
      padding: 8px 16px;
      border-radius: 30px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      display: inline-block;
    }

    /* add-ons */
    .addons-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin: 40px 0;
    }

    .addon-item {
      background: #f0f7f2;
      border-radius: 30px;
      padding: 24px;
      text-align: center;
      border: 1px solid #d0e0d4;
    }

    .addon-item h4 {
      font-size: 20px;
      color: #1e4a3a;
      margin-bottom: 8px;
    }

    .addon-item p {
      color: #4a5568;
      font-size: 16px;
    }

    /* faq (simple) */
    .faq-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      margin: 40px 0;
    }

    .faq-item {
      background: #f9fbfc;
      border-radius: 24px;
      padding: 24px;
      border: 1px solid #e6edf4;
    }

    .faq-item h4 {
      font-size: 18px;
      font-weight: 700;
      color: #1e4a3a;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .faq-item p {
      color: #4a5568;
    }

    /* CTA banner */
    .cta-banner {
      background: #1e4a3a;
      color: white;
      border-radius: 60px;
      padding: 60px 40px;
      text-align: center;
      margin: 70px 0;
    }

    .cta-banner h3 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .cta-banner p {
      font-size: 18px;
      max-width: 600px;
      margin: 0 auto 30px;
      opacity: 0.9;
    }

    .btn-white {
      background: white;
      color: #1e4a3a !important;
      padding: 16px 40px;
      border-radius: 60px;
      font-weight: 700;
      font-size: 18px;
      text-decoration: none;
      display: inline-block;
    }

    /* footer */
    footer {
      background: #1a3a2a;
      color: #cfddee;
      padding: 50px 0 20px;
      margin-top: 80px;
      border-radius: 60px 60px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 40px;
    }

    .footer-col p {
      margin: 20px 0;
    }

    .social-icons i {
      font-size: 26px;
      margin-right: 18px;
      color: #b0d0c0;
      cursor: default;
    }

    .copyright {
      text-align: center;
      padding-top: 40px;
      font-size: 15px;
      border-top: 1px solid #2e5a42;
      margin-top: 40px;
    }

    /* responsive */
    @media (max-width: 768px) {
      .container {
        padding: 0 20px;
      }

      .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 15px 25px rgba(0,0,0,0.1);
        position: absolute;
        top: 80px;
        left: 0;
        z-index: 1000;
        border-radius: 0 0 30px 30px;
        gap: 16px;
      }

      .nav-links.show {
        display: flex;
      }

      .nav-links a {
        width: 100%;
        text-align: center;
        padding: 12px;
        border-bottom: 1px solid #edf2f7;
        white-space: normal;
      }

      .nav-links a:last-of-type {
        border-bottom: none;
      }

      .btn-consult.mobile-btn {
        display: inline-block;
        margin: 10px 0 5px;
        width: 100%;
        text-align: center;
        background: #2e6b3e;
        color: white;
        border: none;
      }

      .btn-consult:not(.mobile-btn) {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .navbar {
        padding: 15px 0;
      }

      .logo img {
        height: 40px;
      }

      .page-header h1 {
        font-size: 36px;
      }

      .pricing-card.featured {
        transform: scale(1);
      }

      .cta-banner h3 {
        font-size: 28px;
      }
    }

    @media (max-width: 480px) {
      .nav-links {
        top: 70px;
      }
    }
