:root {
  --primary: #0A2647;
  --secondary: #2C7A7B;
  --accent: #BA1971;
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --text: #111827;
  --muted: #4B5563;
  --border: #E5E7EB;
  --radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: var(--primary);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}

.logo {
  font-weight: 700;
  font-size: 20px;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  font-size: 14px;
}

nav a {
  color: #E5E7EB;
}

nav a:hover {
  color: #FACC15;
}

.btn-primary {
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
}

.btn-primary:hover {
  background: var(--secondary);
}

/* Hero Intro */
.about-hero {
  background: linear-gradient(135deg, #0A2647, #2C7A7B);
  color: #fff;
  padding: 60px 0 50px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
  gap: 40px;
  align-items: center;
}

.about-hero h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
}

.about-hero p {
  font-size: 15px;
  color: #E5E7EB;
  margin-bottom: 14px;
}

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  max-width: 360px;
}

.about-photo img {
  width: 100%;
  height: auto;
}

/* Main Content */
main {
  padding: 56px 0;
}

.about-section {
  margin-bottom: 48px;
}

.about-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.about-section p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 14px;
}

.about-section ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.about-section li {
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.stat-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  border-left: 4px solid var(--accent);
}

.stat-card strong {
  display: block;
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 6px;
}

.stat-card span {
  font-size: 14px;
  color: var(--muted);
}

.cta-section {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin-top: 48px;
}

.cta-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.cta-section p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 20px;
}

/* Footer */
footer {
  background: var(--primary);
  color: #E5E7EB;
  padding: 40px 0 26px;
  font-size: 13px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-bottom: 20px;
}

footer h4 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #fff;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer li {
  margin-bottom: 6px;
}

footer a {
  color: #E5E7EB;
}

footer a:hover {
  color: #FACC15;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  padding-top: 12px;
  color: #CBD5E1;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
  z-index: 60;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-hero h1 {
    font-size: 26px;
  }

  nav ul {
    display: none;
  }
}:root{
      --primary:#0A2647; --secondary:#2C7A7B; --accent:#BA1971;
      --bg:#FFFFFF; --bg-soft:#F8FAFC; --text:#111827; --muted:#4B5563;
      --radius-lg:16px; --radius-md:12px;
      --shadow-sm:0 4px 12px rgba(15,23,42,0.08); --shadow-md:0 8px 24px rgba(15,23,42,0.12);
    }
    *{margin:0;padding:0;box-sizing:border-box;}
    body{font-family:'Poppins',system-ui,sans-serif;background:var(--bg);color:var(--text);line-height:1.7;}
    a{text-decoration:none;color:inherit;}
    img{display:block;max-width:100%;height:auto;}
    .container{max-width:1120px;margin:0 auto;padding:0 16px;}

    /* HEADER */
    header{background:var(--primary);color:#fff;position:sticky;top:0;z-index:50;box-shadow:0 2px 10px rgba(15,23,42,0.25);}
    .header-inner{display:flex;align-items:center;justify-content:space-between;padding:12px 0;gap:20px;}
    .logo{font-weight:700;font-size:20px;white-space:nowrap;}
    nav ul{display:flex;gap:18px;list-style:none;font-size:14px;}
    nav a{color:#E5E7EB;}
    nav a:hover{color:#FACC15;}
    .btn-primary{display:inline-flex;align-items:center;justify-content:center;padding:9px 18px;border-radius:999px;font-size:14px;font-weight:600;background:var(--accent);color:#fff;box-shadow:0 3px 10px rgba(186,25,113,0.4);border:none;}
    .btn-primary:hover{background:var(--secondary);transform:translateY(-1px);}

    /* HAMBURGER & MOBILE MENU */
    .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 10px; z-index: 100; }
    .hamburger span { display: block; width: 25px; height: 3px; margin: 5px 0; background: #ffffff; transition: 0.3s; }

    /* HERO */
    main{display:block;}
    .hero{background:linear-gradient(135deg,#0A2647 0%,#2C7A7B 100%);color:#fff;padding:56px 0 48px;}
    .hero-grid{display:grid;grid-template-columns:minmax(0,1.6fr) minmax(0,1.1fr);gap:32px;align-items:center;}
    .hero-label{font-size:13px;letter-spacing:0.08em;text-transform:uppercase;color:#FACC15;margin-bottom:8px;font-weight:600;}
    .hero-title{font-size:30px;font-weight:800;line-height:1.3;margin-bottom:12px;}
    .hero-lede{font-size:15px;color:#E5E7EB;margin-bottom:18px;max-width:520px;}
    .hero-meta{font-size:13px;color:#CBD5F5;margin-bottom:8px;}
    .hero-actions{display:flex;flex-wrap:wrap;gap:10px;margin:18px 0 12px;}
    .btn-outline{display:inline-flex;align-items:center;justify-content:center;padding:8px 16px;border-radius:999px;border:1px solid #E5E7EB;font-size:13px;font-weight:500;color:#E5E7EB;background:transparent;}
    .btn-outline:hover{background:rgba(15,23,42,0.3);}
    .hero-stats{display:flex;flex-wrap:wrap;gap:18px;margin-top:14px;font-size:13px;}
    .stat{min-width:110px;}
    .stat strong{display:block;font-size:22px;font-weight:700;color:#FACC15;}
    .stat span{opacity:0.9;}
    .hero-media{display:flex;flex-direction:column;align-items:flex-start;gap:14px;}
    .hero-photo{border-radius:var(--radius-lg);overflow:hidden;box-shadow:0 18px 40px rgba(0,0,0,0.4);background:#020617;max-width:340px;}
    .hero-photo img{width:100%;height:auto;object-fit:cover;}
    .hero-note{background:rgba(15,23,42,0.92);border-radius:var(--radius-md);padding:12px 14px;font-size:13px;border:1px solid rgba(148,163,184,0.4);max-width:340px;}

    /* SECTIONS */
    section{padding:56px 0;}
    .section-header{text-align:center;margin-bottom:36px;}
    .section-eyebrow{font-size:12px;text-transform:uppercase;letter-spacing:0.12em;color:#64748B;margin-bottom:6px;font-weight:600;}
    .section-title{font-size:26px;font-weight:700;color:var(--primary);margin-bottom:8px;}
    .section-sub{font-size:14px;color:var(--muted);max-width:640px;margin:0 auto;}

    /* GRID & CARDS */
    .grid-3{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:22px;align-items:stretch;}
    .card{background:#FFFFFF;border-radius:var(--radius-md);padding:22px;box-shadow:var(--shadow-sm);border-top:3px solid var(--accent);transition:transform 0.2s ease,box-shadow 0.2s ease;}
    .card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);}
    .pill{display:inline-flex;align-items:center;padding:4px 10px;border-radius:999px;font-size:11px;background:#E0F2FE;color:#0369A1;font-weight:600;margin-bottom:10px;}
    .card h3{font-size:17px;font-weight:700;margin-bottom:8px;color:var(--primary);}
    .card p{font-size:14px;color:var(--muted);}

    /* RESULTS */
    .results-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px;}
    .result{background:var(--bg-soft);border-radius:var(--radius-md);padding:20px;text-align:center;transition:background 0.2s ease,color 0.2s ease,box-shadow 0.2s ease;}
    .result strong{display:block;font-size:24px;color:var(--accent);margin-bottom:6px;font-weight:800;}
    .result span{font-size:13px;color:#374151;}
    .result:hover{background:var(--primary);color:#fff;box-shadow:var(--shadow-md);}
    .result:hover strong{color:#FACC15;}
    .result:hover span{color:#E5E7EB;}

    /* TESTIMONIALS & CTA & FAQ */
    .testimonials{background:var(--bg-soft);}
    .testimonial{background:#fff;border-radius:var(--radius-md);padding:20px;box-shadow:var(--shadow-sm);}
    .testimonial p{font-size:14px;color:#374151;margin-bottom:10px;font-style:italic;}
    .testimonial strong{font-size:14px;color:var(--primary);}
    .testimonial span{font-size:12px;color:#6B7280;}
    .cta{background:linear-gradient(135deg,#BA1971,#2C7A7B);color:#fff;text-align:center;padding:56px 0;}
    .cta h2{font-size:24px;font-weight:700;margin-bottom:10px;}
    .cta p{font-size:15px;max-width:540px;margin:0 auto 22px;color:#E5E7EB;}
    .cta small{display:block;font-size:13px;opacity:0.9;margin-top:8px;}
    .faq-wrap{max-width:880px;margin:0 auto;}
    .faq-item{background:#fff;border-radius:var(--radius-md);padding:18px 20px;margin-bottom:14px;box-shadow:var(--shadow-sm);}
    .faq-item h3{font-size:15px;font-weight:600;margin-bottom:6px;color:var(--primary);}
    .faq-item p{font-size:14px;color:#4B5563;}

    /* FOOTER */
    footer{background:var(--primary);color:#E5E7EB;padding:40px 0 26px;font-size:13px;}
    .footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:24px;margin-bottom:20px;}
    footer h4{font-size:14px;margin-bottom:10px;color:#fff;font-weight:600;}
    footer ul{list-style:none;padding:0;}
    footer li{margin-bottom:6px;}
    footer a{color:#E5E7EB;}
    footer a:hover{color:#FACC15;}
    .footer-bottom{text-align:center;border-top:1px solid rgba(148,163,184,0.35);padding-top:12px;color:#CBD5E1;}

    /* WHATSAPP FLOAT */
    .whatsapp-float{position:fixed;bottom:22px;right:22px;width:54px;height:54px;border-radius:50%;background:#25D366;display:flex;align-items:center;justify-content:center;box-shadow:0 6px 18px rgba(37,211,102,0.5);z-index:60;}
    .whatsapp-float:hover{transform:scale(1.05);}
    .whatsapp-float svg{width:28px;height:28px;fill:#fff;}

    /* RESPONSIVE */
    @media (max-width:900px){
      .hero{padding-top:44px;}
      .hero-grid{grid-template-columns:1fr;gap:24px;}
      .hero-title{font-size:24px;}
      
      /* Mobile Menu */
      .hamburger { display: block; }
      nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary);
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 4px 6px rgba(0,0,0,0.2);
        z-index: 99;
      }
      nav ul.active { display: flex; }
      nav ul li { margin: 15px 0; }
      header .btn-primary { display: none; }
      .header-inner { position: relative; }
    }
    @media (max-width:640px){
      section{padding:46px 0;}
      .section-title{font-size:22px;}
    }
    html{scroll-behavior:smooth;}
    a{transition:color 0.3s;}
    .logo{color:#fff;}
    nav ul{align-items:center;}
    .btn-primary{transition:all 0.3s;}
    .btn-primary:hover{transform:translateY(-2px);}

    /* Hamburger & Mobile Menu */
    .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 10px; z-index: 100; }
    .hamburger span { display: block; width: 25px; height: 3px; margin: 5px 0; background: #ffffff; transition: 0.3s; }

    /* Hero */
    .about-hero{background:linear-gradient(135deg,#0A2647,#2C7A7B);color:#fff;padding:60px 0 50px;}
    .about-hero-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,360px);gap:40px;align-items:center;}
    .about-hero h1{font-size:32px;font-weight:800;margin-bottom:12px;line-height:1.3;}
    .about-hero p{font-size:15px;color:#E5E7EB;margin-bottom:14px;}
    .about-photo{border-radius:var(--radius);overflow:hidden;box-shadow:0 18px 40px rgba(0,0,0,0.4);max-width:360px;}
    .about-photo img{width:100%;height:auto;}

    /* Main */
    main{padding:56px 0;}
    .about-section{margin-bottom:48px;}
    .about-section h2{font-size:24px;font-weight:700;color:var(--primary);margin-bottom:12px;}
    .about-section p{font-size:15px;color:var(--muted);margin-bottom:14px;line-height:1.8;}
    .about-section ul{padding-left:20px;margin-bottom:14px;}
    .about-section li{margin-bottom:10px;font-size:15px;color:var(--muted);line-height:1.7;}
    .about-section li strong{color:var(--primary);font-weight:600;}

    /* Stats */
    .stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:20px;margin:32px 0;}
    .stat-card{background:var(--bg-soft);border-radius:var(--radius);padding:22px;text-align:center;border-left:4px solid var(--accent);transition:all 0.3s;}
    .stat-card:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(0,0,0,0.1);}
    .stat-card strong{display:block;font-size:28px;color:var(--accent);margin-bottom:6px;font-weight:800;}
    .stat-card span{font-size:14px;color:var(--muted);}

    /* CTA */
    .cta-section{background:linear-gradient(135deg,#BA1971,#2C7A7B);border-radius:var(--radius);padding:40px;text-align:center;margin-top:48px;color:#fff;}
    .cta-section h2{font-size:24px;font-weight:700;margin-bottom:10px;}
    .cta-section p{font-size:15px;margin-bottom:24px;max-width:640px;margin-left:auto;margin-right:auto;}
    .cta-section .btn-primary{background:#fff;color:var(--accent);padding:12px 28px;font-size:15px;font-weight:600;}
    .cta-section .btn-primary:hover{background:#f8f9fa;}

    footer p{margin-bottom:10px;line-height:1.6;}
    .footer-bottom{margin-top:20px;}

    .whatsapp-float{transition:transform 0.3s;}
    .whatsapp-float:hover{transform:scale(1.1);}

    /* Responsive */
    @media (max-width:900px){
      .about-hero-grid{grid-template-columns:1fr;gap:30px;}
      .about-hero h1{font-size:26px;}
      .about-photo{max-width:100%;}
      
      /* Mobile Menu */
      .hamburger { display: block; }
      nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary);
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 4px 6px rgba(0,0,0,0.2);
        z-index: 99;
      }
      nav ul.active { display: flex; }
      nav ul li { margin: 15px 0; }
      header .btn-primary { display: none; }
      .header-inner { position: relative; }
    }
    html{scroll-behavior:smooth;scroll-padding-top:80px;}
    body{font-family:'Poppins',system-ui,sans-serif;background:var(--bg);color:var(--text);line-height:1.8;font-size:16px;}
    a{text-decoration:none;color:var(--accent);}
    a:hover{color:var(--secondary);}

    header .logo{color:#fff;}

    .breadcrumb{background:var(--bg-soft);padding:14px 0;border-bottom:1px solid var(--border);font-size:14px;}
    .breadcrumb-list{display:flex;align-items:center;gap:8px;flex-wrap:wrap;}
    .breadcrumb-list a{color:var(--muted);}
    .breadcrumb-list a:hover{color:var(--accent);}
    .breadcrumb-separator{color:var(--muted);}
    .breadcrumb-current{color:var(--text);font-weight:600;}

    .article-header{padding:40px 0 32px;max-width:820px;margin:0 auto;text-align:center;}
    .article-category{display:inline-flex;align-items:center;padding:6px 14px;border-radius:999px;background:var(--secondary);color:#fff;font-size:12px;font-weight:600;text-transform:uppercase;margin-bottom:16px;}
    .article-title{font-size:36px;font-weight:800;color:var(--primary);margin-bottom:16px;line-height:1.3;}
    .article-meta{display:flex;align-items:center;justify-content:center;gap:20px;font-size:14px;color:var(--muted);flex-wrap:wrap;}
    .article-meta span{display:flex;align-items:center;gap:6px;}

    .featured-image{max-width:100%;margin:0 auto 40px;border-radius:var(--radius);overflow:hidden;box-shadow:0 8px 24px rgba(15,23,42,0.12);}
    .featured-image img{width:100%;height:auto;}

    .article-layout{display:grid;grid-template-columns:260px 1fr;gap:40px;align-items:start;margin-bottom:60px;}
    .article-sidebar{position:sticky;top:80px;}
    .article-content{max-width:720px;}

    .toc{background:linear-gradient(135deg,#F0F9FF,#E0F2FE);border-left:4px solid var(--accent);border-radius:var(--radius);padding:24px;box-shadow:0 4px 16px rgba(15,23,42,0.06);}
    .toc-title{font-size:18px;font-weight:700;color:var(--primary);margin-bottom:14px;display:flex;align-items:center;gap:8px;}
    .toc-list{list-style:none;padding:0;}
    .toc-list li{margin-bottom:10px;}
    .toc-list a{color:var(--text);font-size:14px;font-weight:500;display:block;padding:6px 0;transition:all 0.3s;}
    .toc-list a:hover{color:var(--accent);padding-left:6px;}
    .toc-list li ol{margin-top:8px;margin-left:16px;list-style:none;}
    .toc-list li ol li{margin-bottom:6px;}
    .toc-list li ol a{font-size:13px;color:var(--muted);}

    .article-content h2{font-size:28px;font-weight:700;color:var(--primary);margin:48px 0 16px;line-height:1.4;scroll-margin-top:80px;}
    .article-content h3{font-size:22px;font-weight:700;color:var(--primary);margin:36px 0 14px;line-height:1.4;scroll-margin-top:80px;}
    .article-content p{margin-bottom:20px;color:var(--text);}
    .article-content ul,.article-content ol{margin-bottom:20px;padding-left:24px;}
    .article-content li{margin-bottom:10px;color:var(--text);}
    .article-content strong{color:var(--primary);font-weight:600;}
    .article-content blockquote{border-left:4px solid var(--accent);padding:16px 20px;margin:24px 0;font-style:italic;color:var(--muted);background:var(--bg-soft);border-radius:8px;}
    .article-content table{width:100%;border-collapse:collapse;margin:24px 0;border-radius:8px;overflow:hidden;box-shadow:0 4px 12px rgba(15,23,42,0.1);}
    .article-content th,.article-content td{padding:12px 16px;text-align:left;border-bottom:1px solid var(--border);}
    .article-content th{background:var(--primary);color:#fff;font-weight:600;font-size:14px;}
    .article-content td{background:var(--bg-soft);font-size:14px;}

    .strategy-card{background:var(--bg-soft);border-radius:var(--radius);padding:24px;margin:24px 0;border-left:4px solid var(--secondary);scroll-margin-top:80px;}
    .strategy-card h4{font-size:18px;font-weight:700;color:var(--primary);margin-bottom:12px;}
    .strategy-card ul{padding-left:20px;margin-bottom:12px;}
    .strategy-card li{margin-bottom:8px;}

    .content-image{margin:32px 0;border-radius:var(--radius);overflow:hidden;box-shadow:0 6px 20px rgba(15,23,42,0.1);}
    .image-caption{font-size:13px;color:var(--muted);text-align:center;margin-top:8px;font-style:italic;}

    .cta-box{background:linear-gradient(135deg,#BA1971,#2C7A7B);color:#fff;border-radius:var(--radius);padding:32px;text-align:center;margin:40px 0;}
    .cta-box h2{font-size:24px;font-weight:700;margin-bottom:10px;}
    .cta-box p{font-size:15px;color:#E5E7EB;margin-bottom:20px;}

    footer{margin-top:80px;}

    @media (max-width:900px){
      .article-layout{grid-template-columns:1fr;}
      .article-sidebar{position:static;margin-bottom:32px;}
      .article-title{font-size:28px;}
      nav ul{display:none;}
    }
