    .faq-answer {
            transition: all 0.3s ease-in-out;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
        }
        
        /* Active state styles */
        .faq-item.active .faq-answer {
            max-height: 500px; /* Arbitrary large height to allow expansion */
            opacity: 1;
            margin-top: 1rem;
        }

        .faq-icon {
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
        }

        /* --- SECTION HEADER --- */
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--text-main);
        }

        .section-header h2 span {
            color: var(--accent);
        }

        .section-header p {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        /* --- GOOGLE RATING BADGE --- */
        .google-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: white;
            padding: 8px 16px;
            border-radius: 100px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 20px;
            font-weight: 700;
            color: var(--text-main);
            border: 1px solid #e2e8f0;
        }

        /* Style for the SVG inside the badge */
        .google-badge svg {
            width: 20px;
            height: 20px;
        }

        /* --- REVIEW GRID --- */
        .reviews-section {
            position: relative;
        }

        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .review-card {
            background: white;
            padding: 35px;
            border-radius: var(--radius-md);
            box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
            border: 1px solid #f1f5f9;
            transition: 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px -10px rgba(37, 99, 235, 0.1);
            border-color: rgba(37, 99, 235, 0.3);
        }

        /* --- CARD HEADER --- */
        .rc-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .rc-user {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .rc-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #f1f5f9;
        }

        .rc-info h5 {
            font-size: 1.05rem;
            font-weight: 800;
            color: var(--text-main);
            line-height: 1.2;
        }

        .rc-info span {
            font-size: 0.85rem;
            color: #94a3b8;
        }

        /* Google Icon in Card */
        .g-icon-svg {
            width: 24px;
            height: 24px;
            opacity: 0.9;
        }

        /* --- STARS & TEXT --- */
        .rc-stars {
            color: #fbbf24;
            margin-bottom: 15px;
            font-size: 0.9rem;
            letter-spacing: 2px;
        }

        .rc-text {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.6;
            font-style: italic;
        }

        /* --- CTA BUTTON --- */
        .review-cta {
            text-align: center;
            margin-top: 60px;
        }

        .btn-google {
            background: white;
            color: var(--text-main);
            padding: 16px 32px;
            border-radius: 100px;
            text-decoration: none;
            font-weight: 700;
            border: 2px solid #e2e8f0;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: 0.3s;
        }

        .btn-google:hover {
            border-color: var(--text-main);
            transform: translateY(-2px);
        }

        .btn-google svg {
            height: 20px;
            width: auto;
        }