.sp-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-top: 60px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.col-science {
    flex: 1;
}

.science-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #333;
}

.science-link {
    color: #111;
    text-decoration: underline;
    font-weight: 600;
}

.stat-row {
    margin-bottom: 30px;
}

.stat-text {
    font-size: 16px;
    margin-bottom: 8px;
    display: block;
    line-height: 1.4;
}

.stat-percent {
    color: #E16203;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-right: 5px;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background-color: #E0E0E0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #050b14;
    border-radius: 10px;
}

.col-proof {
    flex: 1.1;
}

.proof-content {
    display: flex;
    gap: 20px;
}

.review-bubble {
    flex: 1;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-size: 13px;
    line-height: 1.5;
    color: #444;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.user-icon {
    width: 30px;
    height: 30px;
    background-color: #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.user-name {
    font-weight: 700;
    color: #000;
    font-size: 14px;
}

.result-img {
    width: 45%;
    border-radius: 12px;
    object-fit: cover;
    align-self: flex-start;
}

@media (max-width: 1024px){
    .sp-container {
        display: flex;
        flex-direction: row;
        margin: 0 auto;
        gap: 30px;
    }

    h2{
        font-size: 26px;
        text-align: center;
    }

    .science-desc {
        font-size: 16px;
        text-align: center;
    }

    .proof-content {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .result-img {
        width: 100%;
    }
}

@media (max-width: 650px){
    .sp-container {
        display: flex;
        flex-direction: column;
        margin: 0 auto;
        gap: 30px;
        padding: 0 20px;
    }

    h2{
        font-size: 26px;
        text-align: center;
    }

    .science-desc {
        font-size: 16px;
        text-align: center;
    }

    .proof-content {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .result-img {
        width: 100%;
    }
}