/* Reviews Section */

        .review {
            background: white;
            margin-bottom: 1.5rem;
            padding: 1rem;
            border-radius: 5px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }
        .reviewer-name {
            font-weight: bold;
        }
        .verified-review {
            color: #666;
            font-size: 0.8rem;
        }
        .review-title {
            display: block;
            margin-bottom: 0.5rem;
            color: #2d9391;
        }
        .review-text {
            line-height: 1.4;
            color: #333;
        }
        /* Initially hide the extra part of the text and the "read less" link */
        .more-content {
            display: none; 
        }
        .read-more-link {
            color: #2d9391;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            margin-top: 0.5rem;
        }
        .read-more-link:hover {
            text-decoration: underline;
        }
        .review-list {
            display: grid;
            grid-template-columns: 1fr 1fr; /* two columns */
            gap: 2rem; /* spacing between reviews */
        }
        /* Make it 1 column on small screens */
        @media (max-width: 700px) {
            .review-list {
                grid-template-columns: 1fr;
            }
        }