.opinions-hero-banner {
    height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.opinions-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    padding: 0 20px;
}

.opinions-hero-title {
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #92857A;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.opinions-hero-underline {
    width: 120%;
    height: 4px;
    background-color: #92857A;
    margin: 20px auto 0;
    position: relative;
    left: calc(-20% + 20px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.opinions-separator-bar {
    width: 100%;
    height: 30px;
    background-color: #E6E0DA;
    margin: 0;
}

.opinions-section {
    background-color: #ffffff;
    padding: 60px 0;
    width: 100%;
}

.opinions-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px;
    border: 2px solid #a0a0a0;
    background-color: #ffffff;
}

.opinions-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.opinion-item {
    padding: 30px 40px;
    position: relative;
}

.opinion-item:not(:last-child) {
    border-bottom: 1px solid #ddd;
}

.opinion-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.opinion-stars {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: flex-start;
}

.opinion-stars .star {
    font-size: 24px;
    line-height: 1;
}

.opinion-stars .star.filled {
    color: #FFD700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.opinion-stars .star.empty {
    color: #ddd;
}

.opinion-source {
    margin: 0;
}

.opinion-source p {
    font-size: 16px;
    font-weight: 400;
    color: #959595;
    margin: 0;
}

.opinion-text {
    color: #333;
    line-height: 1.6;
}

.opinion-text p {
    margin: 0 0 15px 0;
    font-size: 16px;
}

.opinion-text p:last-child {
    margin-bottom: 0;
}

.no-opinions {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
}

@media (max-width: 1024px) {
    .opinions-hero-title {
        font-size: 35px;
        letter-spacing: 3px;
    }

    .opinions-hero-underline {
        width: 110%;
        left: -5%;
    }

    .opinions-container {
        padding: 30px;
    }

    .opinion-item {
        padding: 25px 30px;
    }
}

@media (max-width: 768px) {
    .opinions-hero-banner {
        height: 350px;
    }

    .opinions-hero-title {
        font-size: 35px;
        letter-spacing: 3px;
    }

    .opinions-hero-underline {
        width: 100%;
        left: 0;
        height: 3px;
    }

    .opinions-section {
        padding: 40px 0;
    }

    .opinions-container {
        padding: 20px;
        margin: 0 15px;
    }

    .opinion-item {
        padding: 20px;
    }

    .opinion-stars .star {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .opinions-hero-banner {
        height: 200px;
    }

    .opinions-hero-title {
        font-size: 35px;
        letter-spacing: 3px;
    }

    .opinions-hero-underline {
        height: 2px;
        margin: 15px auto 0;
    }

    .opinions-container {
        margin: 0 10px;
        padding: 15px;
    }

    .opinion-item {
        padding: 15px;
    }

    .opinion-stars .star {
        font-size: 20px;
    }

    .opinion-source p {
        font-size: 14px;
    }

    .opinion-text p {
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .opinions-hero-title {
        text-shadow: none;
    }

    .opinions-hero-underline {
        box-shadow: none;
    }
}

@media (prefers-contrast: high) {
    .opinions-hero-title {
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    }

    .opinions-container {
        border: 3px solid #000000;
    }

    .opinion-item:not(:last-child) {
        border-bottom: 2px solid #000;
    }

    .opinion-stars .star.filled {
        color: #FF8C00;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
    }
}