

.reviews-section {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
}

h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.reviews-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.review-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.review-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.review-content {
    padding: 20px;
}

.review-date {
    display: block;
    background: #a83232;
    color: white;
    font-size: 14px;
    padding: 5px 10px;
    width: fit-content;
    border-radius: 5px;
    margin-bottom: 10px;
}

h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

p {
    font-size: 14px;
    color: #555;
}

.read-more {
    text-decoration: none;
    margin-top: 10px;
    background: none;
    border: 2px solid #a83232;
    color: #a83232;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.read-more:hover {
    background: #a83232;
    color: white;
}

.foot{
    text-align: center;
    padding: 15px;
    background: #222;
    color: #fff;
    font-size: 14px;
}