/* ===== GENERAL STYLES ===== */
:root {
  --primary-color: #0f9758;
  --primary-dark: #00a08a;
  --primary-light: #7eeee1;
  --secondary-color: #4d7cfe;
  --secondary-dark: #3a5ec0;
  --secondary-light: #7fa1ff;
  --accent-color: #ffb347;
  --text-dark: #1a202c;
  --text-medium: #4a5568;
  --text-light: #718096;
  --background-light: #ffffff;
  --background-off: #f8fafc;
  --background-alt: #f1f5f9;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --border-radius-sm: 0.25rem;
  --border-radius: 0.5rem;
  --border-radius-md: 0.75rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 1.5rem;
  --border-radius-2xl: 2rem;
  --border-radius-full: 9999px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  --shadow-outline: 0 0 0 3px rgba(66, 153, 225, 0.5);
  --transition-fast: 0.15s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
  body {
    font-family: 'Manrope', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  /* ===== BUTTONS ===== */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
  }
  
  .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(114, 9, 183, 0.2);
  }
  
  .btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
  }
  
  .btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(114, 9, 183, 0.1);
  }
  
  .btn-light {
    background-color: white;
    color: var(--primary-color);
  }
  
  .btn-light:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
  }
  
  .btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
  }
  
  .btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
  }
  
  /* ===== PAGE HEADER ===== */
  .page-header {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 120px 0 100px;
    text-align: center;
    overflow: hidden;
  }
  
  .page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
  }
  
  .page-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .page-description {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .page-header-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
  }
  
  .page-header-wave svg {
    display: block;
    width: 100%;
    height: auto;
  }
  
  /* ===== LAST UPDATED SECTION ===== */
  .last-updated {
    padding: 1.5rem 0;
    background-color: var(--bg-light);
  }
  
  .updated-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: fit-content;
    margin: 0 auto;
  }
  
  .updated-icon {
    color: var(--primary-color);
    font-size: 1.25rem;
  }
  
  .updated-text {
    font-size: 0.95rem;
    color: var(--text-light);
  }
  
  .updated-date {
    font-weight: 600;
    color: var(--text-color);
  }
  
  /* ===== PRIVACY POLICY PAGE STYLES ===== */
  .privacy-content, .terms-content {
    padding: 4rem 0;
  }
  
  .privacy-container, .terms-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .privacy-section, .terms-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--bg-dark);
  }
  
  .privacy-section:last-child, .terms-section:last-child {
    border-bottom: none;
  }
  
  .privacy-title, .terms-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
  }
  
  .privacy-text, .terms-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
  }
  
  .privacy-card, .terms-card {
    display: flex;
    gap: 1.5rem;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
  }
  
  .privacy-card:hover, .terms-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .privacy-card-icon, .terms-card-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
  }
  
  .privacy-card-content, .terms-card-content {
    flex-grow: 1;
  }
  
  .privacy-card-title, .terms-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
  }
  
  .privacy-card-text, .terms-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
  }
  
  .privacy-list, .terms-list {
    list-style-type: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .privacy-list li, .terms-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
  }
  
  .privacy-list li::before, .terms-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
  }
  
  .privacy-table, .terms-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
  }
  
  .privacy-table-row, .terms-table-row {
    display: flex;
    border-bottom: 1px solid var(--bg-dark);
  }
  
  .privacy-table-row:last-child, .terms-table-row:last-child {
    border-bottom: none;
  }
  
  .privacy-table-row.header, .terms-table-row.header {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
  }
  
  .privacy-table-cell, .terms-table-cell {
    flex: 1;
    padding: 1rem;
    display: flex;
    align-items: center;
  }
  
  .security-features, .rights-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
  }
  
  .security-feature, .right-item {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
  }
  
  .security-feature:hover, .right-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .security-icon, .right-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
  }
  
  .security-title, .right-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
  }
  
  .security-text, .right-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
  }
  
  .right-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
  }
  
  .right-icon {
    margin: 0;
  }
  
  .right-content {
    flex-grow: 1;
  }
  
  .cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
  }
  
  .cookie-type {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.25rem;
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--primary-color);
  }
  
  .cookie-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  
  .cookie-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
  }
  
  .contact-info-box {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    margin-top: 1.5rem;
  }
  
  .contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .contact-info-item:last-child {
    margin-bottom: 0;
  }
  
  .contact-info-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
  }
  
  .privacy-cta, .terms-cta {
    background-color: var(--bg-light);
    padding: 4rem 0;
    text-align: center;
  }
  
  .cta-content {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  .cta-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
  }
  
  .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .disclaimer-box {
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border-left: 4px solid var(--warning-color);
    margin-bottom: 1.5rem;
  }
  
  .disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1rem;
  }
  
  .disclaimer-text:last-child {
    margin-bottom: 0;
  }
  
  /* ===== TERMS OF SERVICE PAGE STYLES ===== */
  .definition-list {
    margin: 1.5rem 0;
  }
  
  .definition-item {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: var(--box-shadow);
  }
  
  .definition-term {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  
  .definition-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
  }
  
  .terms-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 2rem 0 1rem;
  }
  
  .terms-subsection {
    margin-bottom: 2rem;
  }
  
  .verification-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
  }
  
  .verification-step {
    display: flex;
    gap: 1.5rem;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
  }
  
  .verification-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
  }
  
  .step-content {
    flex-grow: 1;
  }
  
  .step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  
  .step-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
  }
  
  /* ===== FOOTER STYLES ===== */
  .footer {
    background-color: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    margin-bottom: 1rem;
    display: inline-block;
  }
  
  .footer-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
  }
  
  .social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
  }
  
  .footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .footer-links-column {
    flex: 1;
    min-width: 160px;
  }
  
  .footer-links-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
  }
  
  .footer-links-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links-list li {
    margin-bottom: 0.75rem;
  }
  
  .footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
  }
  
  .footer-links-list a:hover {
    color: white;
    padding-left: 5px;
  }
  
  .footer-newsletter {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-newsletter-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
  }
  
  .footer-newsletter-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
  }
  
  .newsletter-form {
    display: flex;
    gap: 0.5rem;
  }
  
  .newsletter-input {
    flex-grow: 1;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    border: none;
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
  }
  
  .newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  
  .newsletter-button {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .newsletter-button:hover {
    background-color: var(--primary-light);
  }
  
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
  }
  
  .footer-bottom-links {
    display: flex;
    gap: 1.5rem;
  }
  
  .footer-bottom-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
  }
  
  .footer-bottom-links a:hover {
    color: white;
  }
  
  /* ===== BACK TO TOP BUTTON ===== */
  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
  }
  
  .back-to-top.active {
    opacity: 1;
    visibility: visible;
  }
  
  .back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
  }
  
  /* ===== RESPONSIVE STYLES ===== */
  @media (max-width: 992px) {
    .page-title {
      font-size: 2.8rem;
    }
    
    .cta-title {
      font-size: 2.2rem;
    }
    
    .footer-content {
      gap: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .page-title {
      font-size: 2.3rem;
    }
    
    .page-description {
      font-size: 1.1rem;
    }
    
    .cta-title {
      font-size: 2rem;
    }
    
    .cta-description {
      font-size: 1rem;
    }
    
    .privacy-card, .terms-card, .right-item {
      flex-direction: column;
    }
    
    .privacy-card-icon, .terms-card-icon, .right-icon {
      margin-bottom: 1rem;
    }
    
    .privacy-table-row, .terms-table-row {
      flex-direction: column;
    }
    
    .privacy-table-cell, .terms-table-cell {
      padding: 0.75rem;
    }
    
    .footer-content {
      flex-direction: column;
      gap: 2rem;
    }
    
    .footer-links {
      width: 100%;
    }
    
    .footer-bottom {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
  }
  
  @media (max-width: 576px) {
    .page-title {
      font-size: 2rem;
    }
    
    .page-description {
      font-size: 1rem;
    }
    
    .cta-buttons {
      flex-direction: column;
      gap: 1rem;
    }
    
    .security-features, .rights-container, .cookie-types {
      grid-template-columns: 1fr;
    }
    
    .footer-links {
      flex-direction: column;
    }
    
    .footer-links-column {
      width: 100%;
      margin-bottom: 1.5rem;
    }
    
    .newsletter-form {
      flex-direction: column;
    }
    
    .newsletter-button {
      width: 100%;
    }
  }
  
  /* ===== ANIMATION STYLES ===== */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fade-in {
    animation: fadeIn 0.8s ease forwards;
  }
  
  .delay-1 {
    animation-delay: 0.2s;
  }
  
  .delay-2 {
    animation-delay: 0.4s;
  }
  
  .delay-3 {
    animation-delay: 0.6s;
  }
  
  /* ===== SPECIFIC PAGE STYLES ===== */
  
  /* Privacy Policy & Terms of Service */
  .privacy-section h2, .terms-section h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  .privacy-section p, .terms-section p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
  }
  
  /* FAQ Styles */
  .faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--box-shadow);
    overflow: hidden;
  }
  
  .faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
  }
  
  .faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
  }
  
  .faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
  }
  
  .faq-item.active .faq-question {
    background-color: var(--primary-color);
  }
  
  .faq-item.active .faq-question h3 {
    color: white;
  }
  
  .faq-item.active .faq-question i {
    color: white;
    transform: rotate(180deg);
  }
  
  .faq-answer {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    display: none;
  }
  
  .faq-item.active .faq-answer {
    display: block;
  }
  
  /* ===== PRELOADER STYLES ===== */
  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  
  .preloader-content {
    text-align: center;
  }
  
  .logo-container {
    margin-bottom: 20px;
  }
  
  .preloader-logo {
    width: 80px;
    height: 80px;
  }
  
  .logo-circle {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 5;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: circle-animation 2s ease forwards;
  }
  
  .logo-path {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 5;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: path-animation 2s ease forwards 0.5s;
  }
  
  @keyframes circle-animation {
    to {
      stroke-dashoffset: 0;
    }
  }
  
  @keyframes path-animation {
    to {
      stroke-dashoffset: 0;
    }
  }
  
  .loading-text {
    display: flex;
    justify-content: center;
  }
  
  .loading-text span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    animation: text-animation 1.5s infinite;
  }
  
  .loading-text span:nth-child(2) {
    animation-delay: 0.1s;
  }
  
  .loading-text span:nth-child(3) {
    animation-delay: 0.2s;
  }
  
  .loading-text span:nth-child(4) {
    animation-delay: 0.3s;
  }
  
  .loading-text span:nth-child(5) {
    animation-delay: 0.4s;
  }
  
  .loading-text span:nth-child(6) {
    animation-delay: 0.5s;
  }
  
  .loading-text span:nth-child(7) {
    animation-delay: 0.6s;
  }
  
  .loading-text span:nth-child(8) {
    animation-delay: 0.7s;
  }
  
  .loading-text span:nth-child(9) {
    animation-delay: 0.8s;
  }
  
  .loading-text span:nth-child(10) {
    animation-delay: 0.9s;
  }
  
  @keyframes text-animation {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
      color: var(--primary-color);
    }
  }
  
  /* ===== CURSOR STYLES ===== */
  .cursor-dot,
  .cursor-dot-outline {
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    z-index: 9999;
  }
  
  .cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
  }
  
  .cursor-dot-outline {
    width: 40px;
    height: 40px;
    background-color: rgba(114, 9, 183, 0.2);
  }
  
  /* ===== PARTICLES BACKGROUND ===== */
  #particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }