/* Page styles for "FAQ - Family Tree Health" — extracted from about/faq.html */

        .faq-header {
            background: url('../../img/about_header.jpg') no-repeat center center/cover;
            padding: 180px 20px 80px;
            color: #fff;
            text-align: center;
        }

        .faq-header h1 {
            margin: 0;
            font-size: 3rem;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .faq-container {
            max-width: 900px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .faq-item {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            margin-bottom: 20px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .faq-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .faq-item details {
            padding: 25px;
        }

        .faq-item summary {
            font-size: 1.25rem;
            font-weight: 600;
            color: #2c4c3b;
            cursor: pointer;
            list-style: none; /* Hide default marker */
            position: relative;
            padding-right: 40px;
            outline: none;
        }

        /* Webkit hide marker */
        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        /* Custom marker */
        .faq-item summary::after {
            content: '+';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.8rem;
            color: #8cc63f;
            font-weight: 400;
            line-height: 1;
            transition: transform 0.3s;
        }

        .faq-item details[open] summary::after {
            content: '−';
            transform: translateY(-50%) rotate(180deg);
        }

        .faq-content {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #eee;
            color: #555;
            font-size: 1.05rem;
            line-height: 1.7;
        }

        .faq-content ul {
            margin: 10px 0;
            padding-left: 20px;
        }

        .faq-content li {
            margin-bottom: 8px;
        }

        .faq-content h4 {
            color: #8cc63f;
            margin: 20px 0 10px;
            font-size: 1.1rem;
        }
        
        .contact-cta {
            text-align: center;
            margin-top: 60px;
            padding: 40px;
            background: #f5f2e6;
            border-radius: 12px;
        }

        .contact-cta h2 {
            color: #2c4c3b;
            margin-top: 0;
        }
        
        .btn-green {
            background-color: #8cc63f;
            color: #fff;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1.1rem;
            display: inline-block;
            margin-top: 15px;
            transition: background-color 0.3s;
        }

        .btn-green:hover {
            background-color: #7ab32e;
        }
