/* Solution Section */
.solution {
    padding: 4rem 0;
    background: #ffffff;
}

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

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

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

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

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

.solution-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    background: #dbeafe;
    color: #2563eb;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

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

    .solution-features {
        grid-template-columns: 1fr;
    }
}

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