/* Banking Services Page Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

.container {
    
    padding: 50px 0;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    color: #555;
}

/* Service Items */
.service-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.25);
}

.service-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #007bff;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
    .service-item {
        padding: 15px;
    }
    .service-item img {
        width: 60px;
        height: 60px;
    }
}


.service-item a {
    display: block; /* Ensure <a> tag takes full width */
    text-align: center; /* Center align if needed */
    margin-bottom: 5px; /* Add some space between <a> and <p> */
}

