/* ===================================
   Problems Section
   =================================== */
.problems-section {
    padding: 80px 40px !important;
    background: #fffbeb !important;
    color: #1a202c !important;
}

.problems-section .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

.problems-section .section-header {
    margin-bottom: 50px;
}

.problems-section .section-title {
    color: #1a202c;
    font-size: 32px;
}

.problems-section .section-title.problems-title-gradient {
    color: #1a202c;
    font-weight: 900;
}

.problems-section .section-subtitle-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.problems-section .section-subtitle {
    color: white !important;
    font-weight: 600;
    background: linear-gradient(135deg, #fcd34d 0%, #f97316 50%, #c2410c 100%) !important;
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 18px !important;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.problem-card {
    background: white;
    border: 2px solid #f97316;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.1);
}

.problem-card:hover {
    transform: translateY(-5px);
    background: white;
    border-color: #ea580c;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.problem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon i {
    font-size: 36px;
    color: white;
}

.problem-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a202c;
}

.problem-description {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
}

.problems-solution {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #fcd34d 0%, #f97316 50%, #c2410c 100%) !important;
    border-radius: 15px;
    border: none;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

.problems-solution p {
    font-size: 28px !important;
    font-weight: 700;
    margin-bottom: 0;
    color: white !important;
    line-height: 1.5;
    word-break: keep-all;
}

.problems-solution strong {
    color: white !important;
    font-size: 28px;
}

.problems-solution i {
    font-size: 40px;
    color: white !important;
    margin-right: 15px;
    vertical-align: middle;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .problems-section {
        padding: 60px 30px !important;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .problems-section .section-title {
        font-size: 24px;
    }

    .problem-title {
        font-size: 20px;
    }

    .problems-solution {
        padding: 25px 15px;
    }

    .problems-solution p {
        font-size: 22px !important;
        line-height: 1.5;
    }

    .problems-solution strong {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .problems-section {
        padding: 50px 20px !important;
    }

    .problems-solution p {
        font-size: 20px !important;
    }

    .problems-solution strong {
        font-size: 20px;
    }
}

@media (max-width: 375px) {
    .problems-section {
        padding: 40px 15px !important;
    }
}
