/* 쇼핑몰 성공 사례 섹션 */
.shopping-success-section {
    background: #f8fafc;
    padding: 100px 0;
}

.success-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.success-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: #111827;
}

.success-cases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.case-item {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #10b981;
}

.case-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #10b981;
}

.case-item p {
    color: #374151;
    line-height: 1.6;
    font-weight: 500;
}

.testimonials {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-item p {
    font-size: 1.2rem;
    font-style: italic;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.testimonial-item span {
    font-weight: 700;
    color: #10b981;
}

@media (max-width: 768px) {
    .success-cases {
        grid-template-columns: 1fr;
    }
}
