 /* ========== VARIABLES (MATCH MAIN PAGES) ========== */
    :root {
      --ocean: #0a4b8a;
      --ocean-dark: #063a6b;
      --ocean-light: #eef5fc;
      --gold: #c7a14a;
      --gold-light: #e0bc6e;
      --gray: #4a5568;
      --light-gray: #f8fafc;
      --white: #ffffff;
      --shadow: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.02);
      --shadow-hover: 0 20px 30px -12px rgba(0,0,0,0.1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Jost', sans-serif;
      font-size: 14px;
      font-weight: 400;
      color: #1e293b;
      line-height: 1.6;
      background: var(--white);
      overflow-x: hidden;
    }

    /* Headings – exactly as main pages */
    h1, h2, h3, h4, h5, h6 {
      font-weight: 500;
      line-height: 1.3;
      margin-bottom: 1rem;
    }
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    h3, h4, h5, h6 { font-size: 24px; }

    .container {
      width: 90%;
      max-width: 1280px;
      margin: 0 auto;
    }

    .section {
      padding: 80px 0;
    }

    /* Buttons – match main pages */
    .btn {
      display: inline-block;
      padding: 0.7rem 1.6rem;
      border-radius: 40px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.2s ease;
      cursor: pointer;
      border: none;
      font-size: 14px;
      background: var(--ocean);
      color: white;
    }
    .btn:hover {
      background: var(--ocean-dark);
      transform: translateY(-2px);
    }
    .btn-outline {
      background: transparent;
      border: 1px solid var(--ocean);
      color: var(--ocean);
    }
    .btn-outline:hover {
      background: var(--ocean);
      color: white;
    }
    .btn-gold {
      background: var(--gold);
      color: var(--ocean-dark);
    }
    .btn-gold:hover {
      background: var(--gold-light);
    }

    /* Header – fixed, matches main pages */
    header {
      position: fixed;
      width: 100%;
      background: white;
      box-shadow: var(--shadow);
      z-index: 1000;
      transition: all 0.2s;
      height: 80px;
    }
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 100%;
    }
    .favicon img {
      height: 55px;
      width: auto;
    }
    nav ul {
      display: flex;
      gap: 2rem;
      list-style: none;
      align-items: center;
    }
    nav ul li a {
      text-decoration: none;
      font-weight: 500;
      color: var(--gray);
      transition: color 0.2s;
      font-size: 14px;
    }
    nav ul li a:hover, nav ul li a.active {
      color: var(--ocean);
    }
    .btn-consult {
      background: var(--gold);
      color: white !important;
      padding: 0.5rem 1.5rem;
      border-radius: 40px;
    }
    .mobile-menu {
      display: none;
      font-size: 1.4rem;
      cursor: pointer;
      color: var(--ocean);
    }

    /* Page Header – gradient background (like main pages) */
    .page-header {
      background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-dark) 100%);
      padding: 140px 0 60px;
      text-align: center;
      color: white;
    }
    .page-header h1 {
      font-size: 36px;
      margin-bottom: 1rem;
      font-weight: 500;
    }
    .breadcrumb {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      font-size: 14px;
      list-style: none;
    }
    .breadcrumb a {
      color: white;
      text-decoration: none;
    }
    .breadcrumb a:hover {
      color: var(--gold);
    }
    .breadcrumb span {
      color: rgba(255,255,255,0.7);
    }

    /* Main Layout – article + sidebar */
    .main-content {
      display: grid;
      grid-template-columns: minmax(0, 2fr) 1fr;
      gap: 3rem;
      padding: 80px 0;
    }

    /* Article Styles */
    .article-header {
      margin-bottom: 2rem;
    }
    .article-kicker {
      font-size: 13px;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0.5rem;
    }
    .article-title {
      font-size: 36px;
      margin-bottom: 1rem;
    }
    .article-subtitle {
      font-size: 18px;
      color: var(--gray);
      margin-bottom: 1.2rem;
      font-weight: 400;
    }
    .article-meta {
      display: flex;
      gap: 1.5rem;
      font-size: 13px;
      color: var(--gray);
      margin-bottom: 1.5rem;
    }
    .article-meta i {
      margin-right: 0.3rem;
      color: var(--gold);
    }
    .article-hero {
      margin: 1.5rem 0;
      border-radius: 20px;
      overflow: hidden;
    }
    .article-image {
      width: 100%;
      border-radius: 20px;
      box-shadow: var(--shadow);
      transition: transform 0.3s ease;
    }
    .article-image:hover {
      transform: scale(1.01);
    }
    .article-body {
      font-size: 15px;
      line-height: 1.7;
    }
    .article-body h2 {
      margin-top: 2rem;
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid var(--gold-light);
      display: inline-block;
    }
    .article-body h3 {
      margin-top: 1.5rem;
      margin-bottom: 0.75rem;
    }
    .article-body p {
      margin-bottom: 1.2rem;
    }
    .article-body ul, .article-body ol {
      margin: 1rem 0 1rem 1.8rem;
    }
    .article-body li {
      margin-bottom: 0.5rem;
    }
    .article-body blockquote {
      background: var(--ocean-light);
      border-left: 4px solid var(--gold);
      padding: 1.2rem 1.8rem;
      margin: 1.8rem 0;
      font-style: italic;
      border-radius: 0 16px 16px 0;
    }
    .article-cta {
      background: linear-gradient(135deg, var(--ocean-light) 0%, var(--white) 100%);
      padding: 2rem;
      border-radius: 24px;
      margin: 2rem 0;
      text-align: center;
      border: 1px solid rgba(10,75,138,0.1);
    }
    .article-cta h3 {
      color: var(--ocean);
    }
    .cta-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      margin-top: 1.2rem;
      flex-wrap: wrap;
    }
    .article-disclaimer {
      font-size: 12px;
      color: var(--gray);
      border-top: 1px solid #e2e8f0;
      padding-top: 1.5rem;
      margin-top: 2rem;
    }

    /* Sidebar – matches main pages widget style */
    .sidebar-widget {
      background: var(--light-gray);
      padding: 1.5rem;
      border-radius: 20px;
      margin-bottom: 2rem;
      box-shadow: var(--shadow);
    }
    .widget-title {
      font-size: 20px;
      margin-bottom: 1rem;
      color: var(--ocean);
      position: relative;
      padding-bottom: 0.5rem;
    }
    .widget-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background: var(--gold);
      border-radius: 3px;
    }
    .related-articles, .categories-list {
      list-style: none;
    }
    .related-articles li, .categories-list li {
      margin-bottom: 1rem;
      padding-bottom: 0.8rem;
      border-bottom: 1px solid #e2e8f0;
    }
    .related-articles li:last-child, .categories-list li:last-child {
      border-bottom: none;
    }
    .related-articles a, .categories-list a {
      color: var(--ocean);
      text-decoration: none;
      font-weight: 500;
      display: block;
      margin-bottom: 0.3rem;
    }
    .related-articles a:hover, .categories-list a:hover {
      color: var(--gold);
    }
    .related-articles .article-meta {
      font-size: 12px;
      margin-bottom: 0;
    }

    /* Footer – identical to main pages */
    footer {
      background: #0f172a;
      color: #cbd5e1;
      padding: 3rem 0 2rem;
    }
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }
    .footer-about img {
      width: 120px;
      margin-bottom: 1rem;
    }
    .footer-links h3, .footer-services h3, .footer-contact h3 {
      color: white;
      margin-bottom: 1rem;
      font-size: 18px;
      font-weight: 500;
    }
    .footer-links ul, .footer-services ul, .footer-contact ul {
      list-style: none;
    }
    .footer-links li, .footer-services li, .footer-contact li {
      margin-bottom: 0.5rem;
    }
    .footer-links a, .footer-services a, .footer-contact a {
      color: #cbd5e1;
      text-decoration: none;
      font-size: 14px;
    }
    .footer-links a:hover, .footer-services a:hover, .footer-contact a:hover {
      color: var(--gold);
    }
    .copyright {
      text-align: center;
      border-top: 1px solid #1e293b;
      padding-top: 2rem;
      font-size: 13px;
    }
    .developer-credit {
      margin-top: 0.5rem;
      font-size: 13px;
    }
    .developer-credit a {
      color: var(--gold);
      text-decoration: none;
      font-weight: 500;
    }
    .developer-credit a:hover {
      text-decoration: underline;
    }

    /* WhatsApp Float */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #25D366;
      width: 55px;
      height: 55px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.8rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      transition: transform 0.2s;
      z-index: 99;
    }
    .whatsapp-float:hover {
      transform: scale(1.05);
    }

    /* Responsive – matches main pages */
    @media (max-width: 992px) {
      .main-content {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 768px) {
      .mobile-menu {
        display: block;
      }
      nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: 0.3s;
        box-shadow: var(--shadow);
      }
      nav ul.active {
        left: 0;
      }
      .cta-actions {
        flex-direction: column;
        align-items: center;
      }
      .article-title {
        font-size: 28px;
      }
      .page-header h1 {
        font-size: 28px;
      }
      .page-header {
        padding: 120px 0 40px;
      }
      .main-content {
        padding: 50px 0;
      }
    }