 .faq-section {
            padding: 60px 0;
            background-color: #ffffff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #333;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(45deg, #ff385c, #ff6b87);
            border-radius: 2px;
        }

        .faq-accordion {
            display: grid;
        
            gap: 25px;
            margin-top: 40px;
        }

        .faq-item {
            background: #ffffff;
            border: 2px solid #f5f5f5;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(255, 56, 92, 0.1);
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .faq-item:hover {
            border-color: #ff385c;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 56, 92, 0.15);
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
            border-bottom: 1px solid #f0f0f0;
            position: relative;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: linear-gradient(135deg, #fff5f7 0%, #fef0f2 100%);
        }

        .faq-question h5 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            margin: 0;
            padding-right: 20px;
            line-height: 1.4;
        }

        .arrow {
            width: 14px;
            height: 14px;
            border-right: 3px solid #ff385c;
            border-bottom: 3px solid #ff385c;
            transform: rotate(45deg);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.active .arrow {
            transform: rotate(225deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            background-color: #ffffff;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer-content {
            padding: 25px;
            color: #666;
            font-size: 1rem;
            line-height: 1.7;
        }

        .faq-answer-content a {
            color: #ff385c;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .faq-answer-content a:hover {
            color: #e6325a;
            text-decoration: underline;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .faq-accordion {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .faq-question {
                padding: 20px;
            }

            .faq-question h5 {
                font-size: 1rem;
            }

            .faq-answer-content {
                padding: 20px;
                font-size: 0.95rem;
            }

            .arrow {
                width: 20px;
                height: 20px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .faq-accordion {
                gap: 15px;
            }

            .faq-question {
                padding: 18px;
            }

            .faq-answer-content {
                padding: 18px;
            }
        }

        /* Loading animation for smooth appearance */
        .faq-item {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .faq-item:nth-child(1) { animation-delay: 0.1s; }
        .faq-item:nth-child(2) { animation-delay: 0.2s; }
        .faq-item:nth-child(3) { animation-delay: 0.3s; }
        .faq-item:nth-child(4) { animation-delay: 0.4s; }
        .faq-item:nth-child(5) { animation-delay: 0.5s; }
        .faq-item:nth-child(6) { animation-delay: 0.6s; }
        .faq-item:nth-child(7) { animation-delay: 0.7s; }
        .faq-item:nth-child(8) { animation-delay: 0.8s; }
        .faq-item:nth-child(9) { animation-delay: 0.9s; }
        .faq-item:nth-child(10) { animation-delay: 1.0s; }
        .faq-item:nth-child(11) { animation-delay: 1.1s; }
        .faq-item:nth-child(12) { animation-delay: 1.2s; }
        .faq-item:nth-child(13) { animation-delay: 1.3s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }