    /* Root variables from catuaba.html */
    :root {
        --primary: #e53e3e;
        --primary-dark: #c53030;
        --accent: #ed8936;
        --text: #2d3748;
        --text-light: #718096;
        --background: #fff5f5;
      }
  
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
  
      body {
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        color: var(--text);
        line-height: 1.6;
        background: var(--background);
      }
  
      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }
  
      /* Header styles from catuaba.html */
      .header {
        background: white;
        padding: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
      }
  
      .header-top {
        background: var(--primary-dark);
        padding: 8px 0;
        color: white;
        font-size: 0.9rem;
      }
  
      .header-top .container {
        display: flex;
        justify-content: flex-end;
        gap: 20px;
      }
  
      .header-top a {
        color: white;
        text-decoration: none;
        transition: opacity 0.3s;
      }
  
      .header-top a:hover {
        opacity: 0.8;
      }
  
      .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
      }
  
      .logo {
        color: var(--primary);
        text-decoration: none;
        font-size: 2rem;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 10px;
      }
  
      /* Enhanced Refund Content Styles */
      .refund-hero {
        background: linear-gradient(135deg, #fff5f5 0%, #fffaf0 100%);
        padding: 80px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
  
      .refund-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("/assets/images/pl-reembols.jpg") center/cover;
        opacity: 0.1;
        z-index: 0;
      }
  
      .refund-hero-content {
        position: relative;
        z-index: 1;
      }
  
      .refund-hero h1 {
        color: var(--primary);
        font-size: 3rem;
        margin-bottom: 20px;
      }
  
      .refund-hero p {
        color: var(--text-light);
        max-width: 600px;
        margin: 0 auto;
        font-size: 1.2rem;
      }
  
      .refund-steps {
        padding: 60px 0;
      }
  
      .steps-container {
        display: flex;
        justify-content: space-between;
        position: relative;
        max-width: 800px;
        margin: 0 auto;
        padding: 40px 0;
      }
  
      .steps-container::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--primary);
        z-index: 0;
      }
  
      .step {
        position: relative;
        z-index: 1;
        background: white;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        width: 200px;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s;
      }
  
      .step:hover {
        transform: translateY(-5px);
      }
  
      .step-number {
        width: 40px;
        height: 40px;
        background: var(--primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        font-weight: bold;
      }
  
      .step h3 {
        color: var(--primary);
        margin-bottom: 10px;
      }
  
      .refund-content {
        max-width: 800px;
        margin: 0 auto;
        background: white;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      }
  
      .refund-section {
        margin-bottom: 40px;
      }
  
      .refund-section h2 {
        color: var(--primary);
        font-size: 2rem;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
      }
  
      .refund-section h2::before {
        font-size: 2rem;
      }
  
      .refund-card {
        background: var(--background);
        padding: 30px;
        border-radius: 15px;
        margin-bottom: 20px;
        transition: transform 0.3s;
        cursor: pointer;
      }
  
      .refund-card:hover {
        transform: translateY(-5px);
      }
  
      .refund-card h3 {
        color: var(--primary);
        margin-bottom: 15px;
        font-size: 1.5rem;
      }
  
      .refund-illustration {
        width: 100%;
        max-width: 400px;
        margin: 40px auto;
        display: block;
        border-radius: 15px;
      }
  
      .faq-section {
        margin-top: 60px;
      }
  
      .faq-item {
        background: white;
        border-radius: 15px;
        margin-bottom: 20px;
        overflow: hidden;
      }
  
      .faq-question {
        padding: 20px;
        background: var(--background);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: bold;
        color: var(--primary);
      }
  
      .faq-answer {
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease-out;
      }
  
      .faq-item.active .faq-answer {
        padding: 20px;
        max-height: 200px;
      }
  
      .faq-question::after {
        content: "+";
        font-size: 1.5rem;
        transition: transform 0.3s;
      }
  
      .faq-item.active .faq-question::after {
        transform: rotate(45deg);
      }
  
      .footer {
        background: #1a202c;
        color: white;
        padding: 60px 0 0;
      }
      
      .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 40px;
      }
      
      .footer-section h3 {
        color: white;
        margin-bottom: 20px;
        font-size: 1.2rem;
        position: relative;
        padding-bottom: 10px;
      }
      
      .footer-section h3::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: var(--accent);
      }
      
      .footer-links {
        list-style: none;
      }
      
      .footer-links li {
        margin-bottom: 12px;
      }
      
      .footer-links a {
        color: var(--text-light);
        text-decoration: none;
        transition: color 0.3s;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      
      .footer-links a:hover {
        color: white;
      }
      
      .copyright {
        text-align: center;
        padding: 20px;
        background: #151a23;
        color: var(--text-light);
        margin-top: 40px;
      }
  
      @media (max-width: 768px) {
        .refund-hero h1 {
          font-size: 2rem;
        }
  
        .steps-container {
          flex-direction: column;
          align-items: center;
          gap: 20px;
        }
  
        .steps-container::before {
          display: none;
        }
  
        .step {
          width: 100%;
          max-width: 300px;
        }
  
        .footer-grid {
          grid-template-columns: 1fr;
        }
      }