/* Solution Section */
.solution {
    background: white;
    padding: 50px 0;
    text-align: center;
}

.solution h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #62B3AF;
    font-weight: bold;
}

.solution > p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 40px;
    color: #666;
}

.devices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.device {
    text-align: center;
}

.device-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-svg {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.device h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: bold;
}

.device p {
    color: #666;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}