.social-proof-section {
    padding: 60px 20px;
    background: #fff;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.social-proof-section * {
    box-sizing: border-box;
}

.sp-container {
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.sp-main-title {
    font-family: "Times New Roman", Times, serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
    line-height: 1.3;
}

.highlight-pink {
    color: #e27890;
}

.sp-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.sp-card {
    flex: 1;
    background: #dfdcdc;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.sp-img-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
}

.sp-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sp-quote-icon {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: #e27890;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    border: 3px solid #fff;
    z-index: 2;
}

.sp-content {
    padding: 30px 20px 20px 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sp-stars {
    color: #e27890;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.sp-headline {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    color: #000;
    font-family: "Times New Roman", Times, serif;
}

.sp-text {
    font-size: 15px;
    line-height: 1.5;
    color: #444;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.sp-author {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-top: auto;
}

@media (max-width: 900px) {
    .social-proof-section {
        padding: 20px;
    }

    .sp-grid {
        flex-direction: column;
        gap: 40px;
    }

    .sp-img-wrapper {
        height: 300px;
    }

    .sp-main-title {
        font-size: 26px;
    }
}