/* 🎯 Target only the Complianz Cookie Policy document */
    .cmplz-document.cookie-statement,
    .cookies-header,
    .cookies-text{
      font-family: "Inter", sans-serif;
      color: #333333;
      max-width: 900px !important;
      margin: 0.4rem auto;
      line-height: 1.7;
      background: #fff;
    }
    
    /* Headings styled like Markdown */
    .cmplz-document.cookie-statement h2 {
      font-family: "Inter", sans-serif;
      font-size: 16px !important;
      font-weight: 600 !important;
      border-bottom: 1px solid #eee !important;
      padding-top: 20px !important;
      padding-bottom: 20px !important;
    }
    
    .cmplz-document.cookie-statement p {
      margin-bottom: 1rem;
      color: #333333;
    }
    
    .cmplz-document.cookie-statement ul {
      margin: 1rem 0 1.5rem 2rem;
      list-style: disc;
    }
    
    /* Links and tables */
    .cmplz-document.cookie-statement a {
      color: #0073e6;
      text-decoration: none;
    }
    
    .cmplz-document.cookie-statement a:hover {
      text-decoration: underline;
    }
    
    .cmplz-document.cookie-statement table {
      width: 100%;
      border-collapse: collapse;
      margin: 1rem 0;
      font-size: 0.9rem;
    }
    
    .cmplz-document.cookie-statement th,
    .cmplz-document.cookie-statement td {
      border: 1px solid #eee;
      padding: 8px 10px;
    }
    .cmplz-document.cookie-statement h2 {
      cursor: pointer;
      background: #f5f5f5;
      padding: 10px 14px;
      border-radius: 6px;
      transition: background 0.3s;
      position: relative;
    }
    
    .cmplz-document.cookie-statement h2::after {
      content: '+';
      position: absolute;
      right: 16px;
      font-weight: bold;
      transition: transform 0.3s;
    }
    
    .cmplz-document.cookie-statement h2.active::after {
      content: '–' !important;
    }
    
    .cmplz-document.cookie-statement h2:hover {
      background: #eaeaea;
    }
    
    .cmplz-document.cookie-statement p,
    .cmplz-document.cookie-statement ul,
    .cmplz-document.cookie-statement table {
      display: none;
      margin-left: 1rem;
    }
    
    .cmplz-document.cookie-statement section.open p,
    .cmplz-document.cookie-statement section.open ul,
    .cmplz-document.cookie-statement section.open table {
      display: block;
    }
    
    /* Accordion header */
    .cmplz-document.cookie-statement h2 {
      cursor: pointer;
      background: #f5f5f5;
      padding: 10px 14px;
      border-radius: 6px;
      transition: background 0.3s;
      position: relative;
    }
    
    /* 🔑 Hide all direct children of the section except the H2 */
    .cmplz-document.cookie-statement section > :not(h2) {
      display: none !important;
    }
    
    /* When section is open, show its content (p, div, tables, cookies overview, etc.) */
    .cmplz-document.cookie-statement section.open > :not(h2) {
      display: block !important;
    }
    
    .cmplz-document.cookie-statement h2:hover {
      background: #eaf1ff; /* subtle blue hover */
    }
    .cmplz-document.cookie-statement h2.active {
      background: #eaf1ff;
    }
    /* Intro paragraph block (the light box) */
    .cookies-text {
      background: #f8f9fc; /* soft bluish-gray background */
      border-left: 4px solid #0069d9; /* blue accent line */
      color: #333333;
      line-height: 1.7;
      padding: 14px 20px;
      border-radius: 4px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.04);
      margin-bottom: 25px;
    }
    
    /* Responsive tweaks */
    @media (max-width: 768px) {
      .cookies-header {
        font-size: 1.6rem;
        text-align: left;
      }
      .cookies-text {
        font-size: 0.95rem;
        padding: 12px 16px;
      }
    }
    
    
    /* ==== TERMS PAGE: Match Complianz Cookie Policy Layout ==== */
    
    /* --- General container alignment --- */
    .terms-header,
    .terms-text,
    .terms-accordions {
      max-width: 900px;
      margin: 0 auto;
    }
    
    /* --- Header section (page title) --- */
    .terms-header h2 {
      font-size: 32px;
      font-weight: 600;
      color: #111;
      margin-bottom: 10px;
      text-align: left;
    }
    
    .terms-text {
      color: #555;
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 25px;
    }
    
    /* --- Accordion container --- */
    .terms-accordions .elementor-accordion {
      border: none;
      box-shadow: none;
    }
    
    /* --- Accordion items --- */
    .terms-accordions .elementor-accordion-item {
      margin-bottom: 8px;
      border-radius: 5px;
      overflow: hidden;
      background: #fff;
      transition: all 0.25s ease !important;
    }
    
    /* --- Accordion headers (closed state) --- */
    .terms-accordions .elementor-tab-title {
      background: #f6f7f8;
      color: #111;
      font-size: 16px;
      font-weight: 600;
      padding: 15px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border: none;
      cursor: pointer;
      transition: background 0.3s ease, color 0.3s ease;
    }
    
    /* --- Accordion headers on hover --- */
    .terms-accordions .elementor-tab-title:hover {
      background: #edf3ff !important;
    }
    
    /* --- Accordion headers when open --- */
    .terms-accordions .elementor-tab-title.elementor-active {
      background: #e5f0ff !important; /* Complianz-style active blue */
      color: #111;
      font-weight: 700;
    }
    
    /* --- Accordion icons (plus/minus on right) --- */
    .terms-accordions .elementor-accordion-icon {
      order: 2;
      margin-left: auto;
    }
    
    .terms-accordions .elementor-accordion-icon i,
    .terms-accordions .elementor-accordion-icon svg {
      font-size: 10px !important;
      color: #555;
    }
    
    /* --- Accordion content area --- */
    .terms-accordions .elementor-tab-content {
      background: #fff;
      color: #444;
      line-height: 1.6;
      padding: 18px 22px;
      border-top: 1px solid #e0e0e0;
      transition: all 0.3s ease;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease ;
    }
    
    /* --- Optional: subtle shadow on active accordion --- */
    .terms-accordions .elementor-accordion-item.elementor-active {
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    }
    
    
    .terms-text {
      background: #f7f9ff;              /* soft light blue background */
      border-left: 4px solid #2a6df4;   /* Complianz-style blue border */
      padding: 18px 24px;
      border-radius: 6px;
      color: #333;
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 25px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }
    /* Optional: make links inside appear blue like Complianz */
    .terms-text a {
      color: #2a6df4;
      text-decoration: none;
    }
    
    .terms-text a:hover {
      text-decoration: underline;
    }
    
   