body {
    background: linear-gradient(120deg, #e0f2ff 0%, #f8fbff 100%);
}

.reviews-container {
    max-width: 90vw;
    margin: 140px auto 80px auto;
    background: #fff;
    padding: 0 42px;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(5, 111, 204, 0.10);
    animation: fadeInUp 1.2s cubic-bezier(.4, 0, .2, 1);
    display: grid;
    grid-template-rows: auto 1fr auto;
    overflow: hidden;
}

.trust-box {
    background: linear-gradient(90deg, #e6f7ff 60%, #f7fbff 100%);
    border-left: 5px solid #056fcc;
    padding: 2.2rem 2rem 2.2rem 2.5rem;
    font-size: 1.15em;
    font-weight: 500;
    letter-spacing: 0.01em;
    margin-bottom: 0;
    animation: fadeIn 1.2s 0.2s both;
}

.reviews-main {
    padding: 36px 36px 0 36px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.reviews-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 10px;
}

.reviews-header i {
    color: #056fcc;
    font-size: 2.1rem;
    opacity: 0.85;
}

.reviews-header h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: #003973;
    letter-spacing: 0.01em;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 24px;
}

.review-card {
    background: #f7fbff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(5, 111, 204, 0.07);
    padding: 28px 22px 22px 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 180px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    animation: cardFadeIn 0.7s cubic-bezier(.4, 0, .2, 1) forwards;
}

.review-card:nth-child(1) {
    animation-delay: 0.1s;
}

.review-card:nth-child(2) {
    animation-delay: 0.2s;
}

.review-card:nth-child(3) {
    animation-delay: 0.3s;
}

.review-card:nth-child(4) {
    animation-delay: 0.4s;
}

.review-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 32px rgba(5, 111, 204, 0.13);
    background: linear-gradient(120deg, #e0f2fe 70%, #f7fbff 100%);
}

.reviewer {
    font-weight: bold;
    color: #056fcc;
    margin-top: 12px;
    font-size: 1.08em;
    letter-spacing: 0.01em;
}

.stars {
    color: #f5b301;
    font-size: 1.3em;
    margin-bottom: 8px;
    letter-spacing: 0.08em;
    filter: drop-shadow(0 1px 2px #fff6);
}

.review-card p {
    margin: 0 0 8px 0;
    color: #003973;
    font-size: 1.08em;
    line-height: 1.5;
}

.leave-review-box {
    background: #e0f2fe;
    border-radius: 12px;
    padding: 32px 18px 28px 18px;
    margin: 0 0 17px 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(5, 111, 204, 0.06);
    animation: fadeInUp 1s 0.5s both;
}

.leave-review-box h3 {
    margin-top: 0;
    font-size: 1.2em;
    color: #056fcc;
    font-weight: 600;
}

.leave-review-box a {
    display: inline-block;
    background: #056fcc;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 18px;
    font-size: 1.08em;
    box-shadow: 0 2px 8px rgba(5, 111, 204, 0.10);
    transition: background 0.3s, transform 0.2s;
}

.leave-review-box a:hover {
    background: #003973;
    transform: scale(1.04);
}

@media (max-width: 900px) {
    .reviews-container {
        padding: 0;
    }

    .reviews-main {
        padding: 24px 10px 0 10px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 600px) {
    .reviews-container {
        margin: 100px 0 20px 0;
        border-radius: 0;
    }

    .trust-box {
        padding: 1.2rem 1rem 1.2rem 1.2rem;
    }

    .reviews-main {
        padding: 12px 2vw 0 2vw;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}