.leave-review-page {
    background-color: #f9f9f9;
    padding-bottom: 60px;
}

.review-hero {
    background: linear-gradient(135deg, #be123b 0%, #9e0e33 100%);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.review-hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.review-hero p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

.review-embed-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.review-embed-iframe {
    display: block;
    width: 100%;
    height: 650px;
    border: 0;
}

.review-embed-fallback {
    text-align: center;
    max-width: 900px;
    margin: 16px auto 0;
    color: #6d6d6d;
    font-size: 0.95rem;
}

.review-embed-fallback a {
    color: #be123b;
    font-weight: 600;
    text-decoration: none;
}

.review-embed-fallback a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .review-hero {
        padding: 45px 20px;
    }

    .review-hero h1 {
        font-size: 2rem;
    }

    .review-hero p {
        font-size: 1rem;
    }

    .review-embed-iframe {
        height: 750px;
    }
}

@media (max-width: 480px) {
    .review-embed-iframe {
        height: 850px;
    }
}