.financial-services {
    padding: 60px 20px;
    background: #f8f9fa;
    text-align: center;
    font-family: Arial, sans-serif;
}

.financial-services .container {
    max-width: 1100px;
    margin: auto;
}

.financial-services h2 {
    font-size: 35px;
    color: #1a237e;
    margin-bottom: 10px;
}

.financial-services .subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.service-card img {
    width: 70px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 25px;
    color: #0d47a1;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 18px;
    color: #555;
}
