            .property-reviews-section {
                max-width: 1000px;
                margin: 30px auto;
                padding: 0 15px;
            }

            .reviews-title {
                text-align: center;
                font-size: 2em;
                margin-bottom: 30px;
                color: #333;
            }

            .custom-reviews-slider {
                position: relative;
                margin: 0 auto;
                overflow: hidden;
                padding: 15px 40px 50px;
            }

            .slider-container {
                display: flex;
                transition: transform 0.5s ease;
            }

            .slider-slide {
                min-width: 100%;
                box-sizing: border-box;
                padding: 0 10px;
                display: flex;
                gap: 15px;
            }

            .review-card {
                background: #fff;
                padding: 20px;
                border-radius: 12px;
                box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
                position: relative;
                min-height: 220px;
                display: flex;
                flex-direction: column;
                width: 100%;
                flex: 1;
            }

            .review-quote {
                font-size: 40px;
                color: #007bff;
                line-height: 1;
                margin-bottom: 5px;
            }

            .review-content {
                font-size: 14px;
                line-height: 1.5;
                color: #555;
                flex-grow: 1;
                overflow: auto;
                max-height: 220px;
            }

            .review-response {
                margin-top: 12px;
                padding-top: 12px;
                border-top: 1px dashed #ccc;
            }

            .response-label {
                font-weight: bold;
                color: #007bff;
                margin-bottom: 3px;
            }

            .response-content {
                font-style: italic;
                padding-left: 8px;
                border-left: 3px solid #007bff;
            }

            .review-meta {
                margin-top: 15px;
                padding-top: 15px;
                border-top: 1px solid #eee;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .reviewer-info {
                display: flex;
                flex-direction: row;
                align-items: center;
                gap: 15px;
            }

            .reviewer-name {
                font-weight: bold;
                color: #333;
                font-size: 14px;
            }

            .review-date {
                color: #666;
                font-size: 0.85em;
            }

            .star-rating {
                color: #ffd700;
                font-size: 16px;
                display: inline-flex;
                flex-direction: row;
                align-items: center;
            }

            .star {
                display: inline-block;
                margin-right: 2px;
            }

            .star:not(.filled) {
                color: #ddd;
            }

            .star.filled {
                color: #ffd700;
            }

            .slider-button {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                width: 36px;
                height: 36px;
                background: #007bff;
                color: white;
                border: none;
                border-radius: 50%;
                font-size: 18px;
                cursor: pointer;
                display: flex !important;
                align-items: center;
                justify-content: center;
                z-index: 10;
            }

            .slider-button:hover {
                background: #0056b3;
            }

            #slider-prev {
                left: 10px;
            }

            #slider-next {
                right: 10px;
            }

            .slider-pagination {
                display: flex;
                justify-content: center;
                margin-top: 20px;
                position: absolute;
                bottom: 20px;
                left: 0;
                right: 0;
            }

            .slider-pagination-bullet {
                width: 10px;
                height: 10px;
                background: #ccc;
                border-radius: 50%;
                margin: 0 5px;
                cursor: pointer;
            }

            .slider-pagination-bullet.active {
                background: #007bff;
            }

            @media (min-width: 768px) {

                .slider-button,
                .slider-pagination {
                    display: flex !important;
                }
            }

            @media (max-width: 767px) {
                .slider-slide {
                    flex-direction: column;
                }

                .slider-slide .review-card:nth-child(2) {
                    display: none;
                }

                .review-card {
                    margin-bottom: 20px;
                }
            }

            .property-review-form {
                margin-top: 40px;
                background: #fff;
                padding: 25px;
                border-radius: 12px;
                box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
            }

            .property-review-form h3 {
                font-size: 20px;
                color: #333;
                margin-bottom: 25px;
                text-align: center;
            }

            .form-row {
                display: flex;
                gap: 15px;
                margin-bottom: 15px;
            }

            .form-group {
                margin-bottom: 15px;
                width: 100%;
            }

            .form-group.half {
                flex: 1;
            }

            .form-group label {
                display: block;
                margin-bottom: 8px;
                color: #555;
                font-size: 13px;
                font-weight: 500;
            }

            .form-group input,
            .form-group textarea {
                width: 100%;
                padding: 10px 12px;
                border: 1px solid #e0e0e0;
                border-radius: 6px;
                font-size: 14px;
                transition: all 0.3s ease;
                background: #f8f9fa;
            }

            .form-group input:focus,
            .form-group textarea:focus {
                outline: none;
                border-color: #007bff;
                box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
                background: #fff;
            }

            .form-group textarea {
                height: 100px;
                resize: vertical;
            }

            .star-rating-selector {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .stars-container {
                display: flex;
                justify-content: center;
                font-size: 40px;
            }

            .star {
                color: #ddd;
                display: inline-block;
                margin: 0 5px;
                cursor: pointer;
                transition: color 0.2s, transform 0.2s;
            }

            .star:hover,
            .star.selected {
                color: #ffd700;
                transform: scale(1.1);
            }

            .rating-text {
                margin-top: 10px;
                font-size: 14px;
                color: #555;
                font-weight: 500;
                text-align: center;
            }

            button[type="submit"] {
                background: #007bff;
                color: white;
                padding: 12px 25px;
                border: none;
                border-radius: 6px;
                font-size: 14px;
                font-weight: 500;
                cursor: pointer;
                transition: all 0.3s ease;
                width: 100%;
                margin-top: 10px;
            }

            button[type="submit"]:hover {
                background: #0056b3;
                transform: translateY(-1px);
                box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
            }

            @media (max-width: 767px) {
                .form-row {
                    flex-direction: column;
                    gap: 0;
                }

                .property-review-form {
                    padding: 20px;
                }

                .stars-container {
                    font-size: 36px;
                }
            }
