.learners-trust-section {
    background-color: #0a0a0a;
    padding: 80px 0;
    position: relative;
    font-family: 'Manrope', sans-serif;
    color: #fff;
    overflow: hidden;
}

.trust-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.laurel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.trust-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.trust-subtext {
    font-size: 15px;
    color: #888;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Ratings Grid */
.ratings-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.rating-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.rating-brand i { font-size: 32px; }
.fb-icon { color: #1877f2; }
.google-icon { color: #ea4335; }

.brand-initial {
    width: 32px;
    height: 32px;
    background: #ff6933;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.score {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.score i {
    color: #f59e0b; /* Golden star */
    font-size: 18px;
}

.review-count {
    font-size: 13px;
    color: #666;
}

/* Laurel Wreaths (Simplified using Borders) */
.laurel {
    width: 100px;
    height: 200px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    position: relative;
    opacity: 0.3;
}

.left-laurel { border-right: 0; border-top: 0; border-bottom: 0; }
.right-laurel { border-left: 0; border-top: 0; border-bottom: 0; }

/* --- Tablet View (max-width: 1024px) --- */
@media (max-width: 1024px) {
    .laurel-wrapper {
        gap: 20px;
    }

    .laurel {
        width: 60px; /* Laurel ka size chhota kiya */
    }

    .ratings-grid {
        gap: 30px;
    }
}

/* --- Mobile View (max-width: 768px) --- */
@media (max-width: 768px) {
    .learners-trust-section {
        padding: 50px 0;
    }

    .laurel {
        display: none; /* Mobile par space bachane ke liye laurels hide kar diye */
    }

    .trust-container {
        padding: 0 20px;
    }

    .ratings-grid {
        flex-direction: column; /* Ratings ek ke niche ek */
        gap: 40px;
    }

    .trust-title {
        font-size: 20px;
    }

    .trust-subtext {
        font-size: 14px;
        margin-bottom: 40px;
    }
}

/* --- Small Mobile (320px - 480px) --- */
@media (max-width: 480px) {
    .score {
        font-size: 18px;
    }

    .rating-brand i {
        font-size: 28px;
    }

    .review-count {
        font-size: 12px;
    }
}