
        .review-container {
            background: #fffff9;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            overflow: hidden;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .review-header {
            background: #ffc107;
            padding: 25px 30px;
            border-bottom: 3px solid #f0b000;
        }

        .review-header h1 {
            color: #333;
            font-size: 28px;
            font-weight: 600;
            margin: 0;
        }

        .form-section {
            background: #fffff9;
            padding: 45px 40px;
        }

        .reviews-section {
            background: #fafafa;
            padding: 40px 30px;
            border-left: 2px solid #f0f0f0;
        }

        .section-title {
            font-size: 20px;
            font-weight: 600;
            color: #333;
            margin-bottom: 25px;
        }

        .form-label {
            font-size: 16px;
            font-weight: 500;
            color: #333;
            margin-bottom: 10px;
        }

        .input-group-custom {
            position: relative;
            margin-bottom: 25px;
        }

        .form-control {
            padding: 14px 18px;
            border: 2px solid #e8e8e8;
            border-radius: 12px;
            font-size: 15px;
            transition: all 0.3s ease;
            background: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.04);
        }

        .form-control:focus {
            border-color: #ffc107;
            box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.15), 0 4px 8px rgba(0,0,0,0.08);
            background: white;
            transform: translateY(-1px);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 130px;
        }

        .star-rating-group {
            margin-bottom: 30px;
            background: white;
            padding: 20px;
            border-radius: 12px;
            border: 2px solid #f0f0f0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.04);
        }

        .stars {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            justify-content: center;
        }

        .star {
            font-size: 40px;
            color: #e0e0e0;
            cursor: pointer;
            transition: all 0.3s ease;
            user-select: none;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
        }

        .star:hover,
        .star.active {
            color: #ffc107;
            transform: scale(1.2) rotate(-10deg);
            filter: drop-shadow(0 4px 8px rgba(255, 193, 7, 0.4));
        }

        .rating-text {
            text-align: center;
            margin-top: 12px;
            font-size: 14px;
            color: #666;
            font-weight: 500;
            min-height: 20px;
        }

        .submit-btn {
            background: #28a745;
            color: white;
            border: none;
            padding: 14px 40px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: block;
            margin: 30px auto 0;
            width: 100%;
            max-width: 300px;
        }

        .submit-btn:hover {
            background: #218838;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        .review-card {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .review-card:hover {
            box-shadow: 0 4px 15px rgba(0,0,0,0.12);
            transform: translateY(-2px);
        }

        .review-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .avatar {
            width: 40px;
            height: 40px;
            background: #e8f5e9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #4caf50;
            flex-shrink: 0;
        }

        .avatar svg {
            width: 24px;
            height: 24px;
            fill: #4caf50;
        }

        .reviewer-name {
            font-size: 16px;
            font-weight: 600;
            color: #333;
        }

        .review-rating {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .review-stars {
            display: flex;
            gap: 3px;
        }

        .review-star {
            font-size: 18px;
            color: #ffc107;
        }

        .rating-value {
            font-size: 15px;
            font-weight: 600;
            color: #666;
        }

        .review-text {
            color: #555;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .review-date {
            color: #999;
            font-size: 13px;
            margin: 0;
        }

        @media (max-width: 767px) {
            .reviews-section {
                border-left: none;
                border-top: 2px solid #f0f0f0;
            }

            .review-header h1 {
                font-size: 22px;
            }

            .form-section,
            .reviews-section {
                padding: 25px 20px;
            }

            .star {
                font-size: 28px;
            }
        }