/* Problem Section */
.problem {
    padding: 4rem 0;
    background: #f8fafc;
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.problem-text p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.problem-list {
    list-style: none;
}

.problem-list li {
    padding: 0.75rem 0;
    color: #475569;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.problem-list li::before {
    content: '⚠️';
    margin-right: 1rem;
    font-size: 1.25rem;
}

.problem-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.problem-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .problem-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .problem-text h2 {
        font-size: 1.75rem;
    }
}