 .faq-section {
     padding: 80px 0;
     background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
 }

 .faq-container {
     max-width: 1000px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .faq-header {
     text-align: center;
     margin-bottom: 60px;
 }

 .faq-header h2 {
     font-family: 'Playfair Display', serif;
     font-size: 2.5rem;
     color: #2c3e50;
     margin-bottom: 15px;
 }

 .faq-header p {
     font-size: 1.1rem;
     color: #6c757d;
     max-width: 600px;
     margin: 0 auto;
 }

 .faq-categories {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
     margin-bottom: 50px;
 }

 .category-card {
     background: white;
     padding: 25px;
     border-radius: 12px;
     text-align: center;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
 }

 .category-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 5px 20px rgba(220, 53, 69, 0.2);
 }

 .category-card.active {
     background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
     color: white;
 }

 .category-card i {
     font-size: 2.5rem;
     margin-bottom: 15px;
     color: #dc3545;
 }

 .category-card.active i {
     color: white;
 }

 .category-card h3 {
     font-size: 1.2rem;
     margin-bottom: 8px;
 }

 .category-card p {
     font-size: 0.9rem;
     opacity: 0.8;
 }

 .faq-list {
     display: none;
 }

 .faq-list.active {
     display: block;
 }

 .faq-item {
     background: white;
     margin-bottom: 15px;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
     transition: all 0.3s ease;
 }

 .faq-item:hover {
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 }

 .faq-question {
     padding: 25px 30px;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-weight: 600;
     color: #2c3e50;
     transition: all 0.3s ease;
 }

 .faq-question:hover {
     background: #f8f9fa;
     color: #dc3545;
 }

 .faq-question i {
     font-size: 1.2rem;
     transition: transform 0.3s ease;
     color: #dc3545;
 }

 .faq-item.active .faq-question i {
     transform: rotate(180deg);
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease;
     padding: 0 30px;
 }

 .faq-item.active .faq-answer {
     max-height: 500px;
     padding: 0 30px 25px 30px;
 }

 .faq-answer p {
     color: #6c757d;
     line-height: 1.8;
     margin-bottom: 10px;
 }

 .faq-answer ul {
     margin-left: 20px;
     color: #6c757d;
 }

 .faq-answer ul li {
     margin-bottom: 8px;
     line-height: 1.6;
 }

 .contact-support {
     background: white;
     padding: 40px;
     border-radius: 12px;
     text-align: center;
     margin-top: 50px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
 }

 .contact-support h3 {
     font-family: 'Playfair Display', serif;
     font-size: 1.8rem;
     color: #2c3e50;
     margin-bottom: 15px;
 }

 .contact-support p {
     color: #6c757d;
     margin-bottom: 25px;
 }

 .support-buttons {
     display: flex;
     gap: 15px;
     justify-content: center;
     flex-wrap: wrap;
 }

 .support-btn {
     padding: 12px 30px;
     border-radius: 8px;
     text-decoration: none;
     font-weight: 600;
     transition: all 0.3s ease;
     display: inline-flex;
     align-items: center;
     gap: 10px;
 }

 .support-btn.primary {
     background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
     color: white;
 }

 .support-btn.primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
 }

 .support-btn.secondary {
     background: white;
     color: #dc3545;
     border: 2px solid #dc3545;
 }

 .support-btn.secondary:hover {
     background: #dc3545;
     color: white;
 }

 .search-box {
     max-width: 600px;
     margin: 0 auto 40px;
     position: relative;
 }

 .search-box input {
     width: 100%;
     padding: 15px 50px 15px 20px;
     border: 2px solid #e9ecef;
     border-radius: 10px;
     font-size: 1rem;
     transition: all 0.3s ease;
 }

 .search-box input:focus {
     outline: none;
     border-color: #dc3545;
     box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
 }

 .search-box i {
     position: absolute;
     right: 20px;
     top: 50%;
     transform: translateY(-50%);
     color: #6c757d;
     font-size: 1.2rem;
 }

 @media (max-width: 768px) {
     .faq-header h2 {
         font-size: 2rem;
     }

     .faq-categories {
         grid-template-columns: 1fr;
     }

     .support-buttons {
         flex-direction: column;
     }

     .support-btn {
         width: 100%;
         justify-content: center;
     }
 }