.fb-section {
    padding: 80px 20px;
}

.container1 {
    max-width: 1200px;
    margin: 0 auto;
}

.fb-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
}

.reviews-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.fb-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    font-size: 13px;
    line-height: 1.4;
    color: #1c1e21;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fb-header {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.fb-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.fb-content {
    flex: 1;
}

.fb-name {
    font-weight: 700;
    color: #050505;
    margin-bottom: 2px;
    display: block;
}

.fb-text {
    margin-bottom: 10px;
    color: #111;
}

.fb-footer {
    color: #65676b;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.fb-action { cursor: pointer; }
.fb-action:hover { text-decoration: underline; }

.center-image-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.center-photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: block;
}

@media (max-width: 1024px){
    .container1 {
        display: flex;
        flex-direction: column;
    }

    .fb-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .reviews-row {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
        margin-bottom: 20px;
    }

    .fb-section {
        padding: 40px 20px 0 20px;
    }
}