.solutions {
    padding: 80px 50px;
    background: #f5f7fa;
}

.solutions-title {
    text-align: center;
    font-size: 42px;
    color: #333;
    margin-bottom: 50px;
    font-weight: normal;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.solution-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-image {
    transform: scale(1.05);
}

.solution-content {
    padding: 30px;
}

.solution-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.new-badge {
    background: #FF0000;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: normal;
}

.solution-features {
    list-style: none;
    margin-bottom: 30px;
}

.solution-features li {
    color: #666;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.solution-features li::before {
    content: "•";
    color: #0061FF;
    position: absolute;
    left: 0;
}

.solution-card .button {
    width: 100%;
    text-align: center;
} 