/* Contact Banner */
.contact-banner {
    position: relative;
    height: 40vh;
    min-height: 320px;
       /* Better alternatives you can swap: */
    /* background-image: url('https://thumbs.dreamstime.com/b/global-finance-investment-connections-around-world-map-world-map-illustrating-global-finance-investment-connections-412292484.jpg'); */
    background-size: cover;
    background-position: center;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(42 75 53), rgb(32 68 44));
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content { text-align: center; color: white; }
.banner-title { font-size: 3rem; font-weight: 700; margin-bottom: 1rem; color: white; }
.banner-subtitle { font-size: 1.4rem; max-width: 700px; margin: 0 auto; }

/* Other classes used above */
.section__card { box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.block-title { font-size: 2.1rem; font-weight: 700; color: #1a3c34; margin-bottom: 1.5rem; }
.check-list li::before { content: "✔"; color: #4CAF50; font-weight: bold; position: absolute; left:240px; }
.cta-button {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background: #4CAF50;
    color: white;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}
.cta-button:hover { background: #388e3c; transform: translateY(-3px); }

/* Responsive */
@media (max-width: 992px) {
    .grid { grid-template-columns: 1fr !important; gap: 2.5rem; }
}