/* ----- RESET & GLOBAL (consistent with Eidra platform) ----- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      background: #f6f8fb;   /* same light background */
      color: #1a1e2b;
      line-height: 1.5;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
      width: 100%;
    }

    /* ----- NAVBAR (identical to homepage) ----- */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.2rem 0;
      border-bottom: 1px solid #e9eef5;
      margin-bottom: 2rem;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .logo a {
      font-weight: 700;
      font-size: 1.8rem;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #2563eb, #8b5cf6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 2.2rem;
    }

    .nav-links a {
      text-decoration: none;
      color: #3a4b66;
      font-weight: 500;
      font-size: 1rem;
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: #2563eb;
    }

    /* active page indicator (mild) */
    .nav-links a.active {
      color: #2563eb;
      border-bottom: 2px solid #2563eb;
      padding-bottom: 0.25rem;
    }

    /* hamburger – hidden on desktop, but we keep same as homepage for consistency */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      padding: 0.5rem;
    }

    .hamburger span {
      width: 25px;
      height: 2px;
      background: #2c3e5c;
      margin: 3px 0;
      transition: 0.2s;
      border-radius: 2px;
    }

    /* mobile nav overlay (same as homepage) */
    .mobile-nav {
      display: flex;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(4px);
      z-index: 1000;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.2s ease, visibility 0.2s;
    }

    .mobile-nav.active {
      opacity: 1;
      visibility: visible;
    }

    .mobile-nav a {
      font-size: 1.8rem;
      font-weight: 600;
      text-decoration: none;
      color: #0f182a;
    }

    .close-btn {
      position: absolute;
      top: 2rem;
      right: 2rem;
      font-size: 2.5rem;
      cursor: pointer;
      color: #4f658a;
    }

    /* ----- TYPOGRAPHY & SPACING ----- */
    h1, h2, h3 {
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    h1 {
      font-size: 2.8rem;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    h2 {
      font-size: 2.2rem;
      margin-bottom: 1rem;
      color: #0f182a;
    }

    h3 {
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
      color: #1e2b44;
    }

    .lead {
      font-size: 1.2rem;
      color: #3a5072;
      max-width: 750px;
      margin: 0 auto 2.5rem auto;
      text-align: center;
    }

    /* ----- CARDS & SECTIONS ----- */
    .section {
      margin: 4rem 0;
    }

    .card-simple {
      background: white;
      border-radius: 24px;
      padding: 2rem;
      box-shadow: 0 15px 30px -15px rgba(0,0,0,0.1);
      border: 1px solid rgba(255,255,255,0.6);
    }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 2rem;
    }

    .grid-4 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
    }

    .principle-card {
      background: white;
      border-radius: 24px;
      padding: 2rem 1.5rem;
      box-shadow: 0 15px 30px -15px rgba(0,0,0,0.1);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .principle-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 25px 35px -18px rgba(0,0,0,0.15);
    }

    .principle-icon {
      font-size: 2.2rem;
      margin-bottom: 1rem;
    }

    .list-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .list-item span {
      background: #eef3ff;
      border-radius: 50%;
      width: 36px;
      height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      color: #2563eb;
    }

    /* ----- BUTTONS (identical to homepage) ----- */
    .btn {
      display: inline-block;
      padding: 0.8rem 2rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.2s ease;
      cursor: pointer;
      border: none;
      text-align: center;
    }

    .btn-primary {
      background: linear-gradient(135deg, #3a40da, #b05cff);
      color: white;
      box-shadow: 0 8px 18px -6px rgba(90, 75, 255, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 24px -8px #4f46e5;
    }

    .btn-secondary {
      background: white;
      color: #2c3e5c;
      border: 1.5px solid #e2e8f0;
      box-shadow: 0 4px 8px -4px rgba(0,0,0,0.05);
    }

    .btn-secondary:hover {
      background: #f8fafd;
      border-color: #cbd5e1;
      transform: translateY(-2px);
    }

    .btn-whatsapp {
      background: linear-gradient(145deg, #25D366, #128C7E);
      color: white;
      box-shadow: 0 8px 18px -6px #25D366;
    }

    .btn-whatsapp:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 24px -8px #128C7E;
    }

    /* community & cta cards */
    .community-card {
      background: white;
      border-radius: 28px;
      padding: 3rem 2rem;
      text-align: center;
      box-shadow: 0 25px 40px -20px rgba(0,0,0,0.2);
      margin: 4rem 0;
    }

    .cta-card {
      background: white;
      border-radius: 28px;
      padding: 3rem 2rem;
      text-align: center;
      margin: 4rem 0 2rem;
      box-shadow: 0 20px 35px -18px rgba(0,0,0,0.15);
    }

    .cta-card .btn {
      margin: 0.5rem;
    }

    /* ----- FOOTER (same as homepage) ----- */
    .footer {
      border-top: 1px solid #e9eef5;
      padding: 2.5rem 0;
      margin-top: 3rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      color: #61799e;
      font-size: 0.9rem;
    }

    .footer-links {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .footer-links a {
      text-decoration: none;
      color: #4d6383;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: #2563eb;
    }

    .footer-logo {
      font-weight: 600;
      font-size: 1.2rem;
      background: linear-gradient(135deg, #2563eb, #8b5cf6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ----- RESPONSIVE (mobile) ----- */
    @media (max-width: 700px) {
      h1 { font-size: 2.2rem; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .footer { flex-direction: column; gap: 1.5rem; text-align: center; }
    }

    @media (max-width: 480px) {
      .container { padding: 0 1rem; }
    }