        /* Base styles */
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* FAQ styles */
        .faq-container {
            margin-top: 2rem;
        }
        
        .faq-item {
            border: 1px solid #ddd;
            margin-bottom: 1rem;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .faq-question {
            background-color: #f9f9f9;
            padding: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: #f0f0f0;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
        }
        
        .faq-question.active {
            background-color: #e0e0e0; /* Change this color for active state */
        }
        
        .faq-question.active::after {
            content: '-';
        }
        
        .faq-answer {
            padding: 0 1rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-answer.active {
            padding: 1rem;
            max-height: 1000px; /* Adjust this value based on your content */
        }
        
        /* Responsive adjustments */
        @media (max-width: 600px) {
            body {
                padding: 10px;
            }
            
            .faq-question {
                font-size: 0.9rem;
            }
        }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes slideInFromLeft {
      from { transform: translateX(-50px); opacity: 0; }
      to { transform: translateX(0); opacity: 1; }
    }
    @keyframes slideInFromRight {
      from { transform: translateX(50px); opacity: 0; }
      to { transform: translateX(0); opacity: 1; }
    }
    @keyframes scaleIn {
      from { transform: scale(0.9); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }
    .animate-fadeIn { animation: fadeIn 1s ease-out; }
    .animate-slideInLeft { animation: slideInFromLeft 1s ease-out; }
    .animate-slideInRight { animation: slideInFromRight 1s ease-out; }
    .animate-scaleIn { animation: scaleIn 0.5s ease-out; }
    .animate-delay-1 { animation-delay: 0.2s; }
    .animate-delay-2 { animation-delay: 0.4s; }
    .animate-delay-3 { animation-delay: 0.6s; }
  html {
    scroll-behavior: smooth;
  }