
        #customer-review {
            padding: 80px 0;
            background: #fafafa;
        }

        .cr-container {
            max-width: 1200px;
            margin: auto;
            padding: 0 15px;
        }

        .cr-title {
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 50px;
            color: #111;
            letter-spacing: 1px;
        }

        .cr-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .cr-item {
            background: #fff;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
        }

        .cr-item img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .cr-content {
            padding: 20px;
        }

        .cr-stars {
            color: #f5b301;
            margin-top: 8px;
        }

        @media (max-width: 768px) {
            .cr-grid {
                grid-template-columns: 1fr;
            }

            .cr-title {
                font-size: 26px;
                margin-bottom: 30px;
            }

            #customer-review {
                padding: 50px 0;
            }
        }
