body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: linear-gradient(180deg, #ffffff, #f5f7ff);
    color: #333;
}
.solutions-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
}
.solutions-box {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
    background: #fff;
}
.solutions-box h2 {
    color: #1a3cae;
    text-align: center;
    margin-bottom: 20px;
}
.solutions-intro {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 50px;
    color: #555;
}
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.solution-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 25px;
    background: #fff;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}
.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: #f7f9ff;
}
.solution-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: #1a3cae;
}
.solution-card h3 {
    margin-top: 0;
    color: #1a3cae;
}
.solution-card p {
    font-size: 0.95rem;
    color: #555;
}
.tags {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tag {
    background: #eef2ff;
    color: #1a3cae;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}
@media (max-width: 800px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}