 .faq-section {
            max-width: 1100px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .faq-section h1 {
            text-align: center;
            margin-bottom: 10px;
        }

        .faq-section p.subtext {
            text-align: center;
            opacity: 0.8;
            margin-bottom: 50px;
        }

        .faq-item {
            border-bottom: 1px solid rgba(255,255,255,0.1);
            margin-bottom: 15px;
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            padding: 18px 0px;
            padding-left: 20px;
            padding-right: 24px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question i {
            transition: transform 0.3s ease;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            font-size: 0.95rem;
            opacity: 0.85;
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            margin-bottom: 15px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
