    /* About Section */
        .about-section {
            margin: 5rem 0 3rem;
            padding: 4rem 3rem;
            background: rgba(192, 115, 92, 0.15);
            border-radius: 4px;
            border: 1px solid rgba(192, 115, 92, 0.2);
            text-align: center;
        }

        .about-title {
            font-size: 2rem;
            font-weight: 400;
            color: #3E3D3A;
            margin-bottom: 1rem;
        }

        .about-description {
            font-size: 1.15rem;
            color: #5A5A57;
            letter-spacing: 0.02em;
            margin-bottom: 2rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
    
    /* FAQ Hero Section */
        .faq-hero {
            text-align: center;
            padding: 4rem 2rem 2rem;
            position: relative;
            z-index: 1;
        }

        .faq-hero h1 {
            font-size: 3.5rem;
            font-weight: 300;
            color: #3E3D3A;
            margin-bottom: 1.5rem;
        }

        .faq-hero p {
            font-size: 1.25rem;
            color: #5A5A57;
            line-height: 1.8;
        }

        /* FAQ Picture Frames */
        .faq-container {
            max-width: 1100px;
            margin: 2rem auto 4rem;
            padding: 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 3rem;
            position: relative;
            z-index: 1;
        }

        .faq-item {
            position: relative;
            background: #FAFAF9;
            border: 16px solid #8B7355;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15), inset 0 0 0 2px #D4C9BE, inset 0 0 0 8px #F5F3F0;
            cursor: pointer;
            perspective: 1000px;
            min-height: 250px;
        }

        .faq-item:nth-child(odd):hover {
            transform: rotate(-1deg);
        }

        .faq-item:nth-child(even):hover {
            transform: rotate(1deg);
        }

        .faq-item {
            transform: translateY(-4px) rotate(0deg);
        }

        .wall-hook {
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 8px;
            background: radial-gradient(circle, #8B7355, #6B5335);
            border-radius: 50%;
            box-shadow: 0 2px 4px rgba(0,0,0,0.3);
            z-index: -1;
        }

        .hanging-wire {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 30px;
            border: 2px solid rgba(139, 115, 85, 0.4);
            border-bottom: none;
            border-radius: 50% 50% 0 0;
            z-index: -1;
        }
        .frame-content {
            position: relative;
            width: 100%;
            min-height: 250px;
            transition: transform 600ms;
            transform-style: preserve-3d;
        }

        .faq-item.open .frame-content {
            transform: rotateY(180deg);
        }
        .faq-question,
        .faq-answer {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
        }
        .faq-question {
            padding: 2.5rem 2rem;
            min-height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .faq-question h3 {
            font-size: 1.2rem;
            font-weight: 400;
            color: #3E3D3A;
            line-height: 1.5;
            font-style: italic;
        }

         .faq-answer {
            transform: rotateY(180deg);
            background: #FAFAF9;
            padding: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .faq-answer-content {
            color: #5A5A57;
            font-size: 1rem;
            line-height: 1.8;
            text-align: center;
        }

        .frame-nameplate {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #B8956A 0%, #9A7B54 100%);
            color: #F5F3F0;
            padding: 0.5rem 1.5rem;
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            border-radius: 2px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
            opacity: 0;
            transition: opacity 300ms ease;
        }

        .faq-item:hover .frame-nameplate {
            opacity: 1;
        }
        /* Mobile Styles */
        @media (max-width: 768px) {
        .faq-hero {
                padding: 2rem 1rem 1.5rem;
            }

            .faq-hero h1 { 
                font-size: 2rem; 
                margin-bottom: 1rem;
            }

            .faq-hero p {
                font-size: 1rem;
            }

            .faq-container {
                max-width: 700px;
                padding: 1rem;
                gap: 4rem;
                margin: 1rem auto 3rem;
            }

            .faq-item {
                transform: rotate(0deg) !important;
                min-height: 220px;
                border-width: 12px;
            }

            .faq-item:hover {
                transform: translateY(0) rotate(0deg);
            }

            .wall-hook {
                top: -30px;
                width: 6px;
                height: 6px;
            }

            .hanging-wire {
                top: -24px;
                width: 60px;
                height: 24px;
                border-width: 1.5px;
            }

            .frame-content {
                min-height: 220px;
            }

            .faq-question {
                padding: 1.5rem 1rem;
                min-height: 220px;
            }

            .faq-question h3 {
                font-size: 1rem;
                line-height: 1.4;
            }

            .faq-answer {
                padding: 1.5rem 1rem;
            }

            .faq-answer-content {
                font-size: 0.9rem;
                line-height: 1.6;
            }

            .frame-nameplate {
                bottom: -40px;
                padding: 0.4rem 1rem;
                font-size: 0.65rem;
                opacity: 1;
            }
        }

        @media (max-width: 480px) {
            .faq-hero h1 {
                font-size: 1.75rem;
            }

            .faq-container {
                max-width: 500px;
                gap: 3.5rem;
            }

            .faq-item {
                border-width: 10px;
                min-height: 250px;
                max-width: 330px;
            }

            .frame-content {
                min-height: 200px;
            }

            .faq-question {
                padding: 1.25rem 0.875rem;
                min-height: 200px;
            }

            .faq-question h3 {
                font-size: 0.95rem;
            }

            .faq-answer {
                padding: 1.25rem 0.875rem;
            }

            .faq-answer-content {
                font-size: 0.85rem;
            }
        }
        