      /* ===== FAQ Section Styles ===== */
        .faq-section {
            padding: 60px 0;
            background: #f8f9fa;
        }

        .faq-section h2 {
            text-align: center;
            color: black;
            margin-bottom: 30px;
            font-size: 2rem;
        }

        details {
            background: white;
            padding: 15px 20px;
            margin-bottom: 15px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        summary {
            font-weight: 600;
            cursor: pointer;
            outline: none;
            position: relative;
            padding-right: 30px;
        }

        summary::-webkit-details-marker {
            display: none;
        }

        summary:after {
            content: '+';
            position: absolute;
            right: 0;
            font-size: 1.2rem;
        }

        details[open] summary:after {
            content: '-';
        }

        details p {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }