

:root {
    --main-blue: #01579b; 
    --light-gray: #f2f2f2;
}

body {
    font-family: 'Arial', sans-serif; 
background-image: linear-gradient(
        to bottom, 
        white 0%,            
        white 300px,         
        var(--light-gray) 80% 
    );    line-height: 1.7; 
    color: #444;
}

.container {
    display: flex; 
    max-width: 1100px; 
    margin: 50px auto;
background-image: linear-gradient(
        to bottom, 
        white 0%,            
        white 300px,          
        var(--light-gray) 80% 
    );    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.content-section {
    flex: 1; 
    padding: 50px; 
    display: flex;
    flex-direction: column;
}

.header-group {
    display: flex;
    flex-direction: column; 
    align-items: flex-start; 
    margin-bottom: 40px;
}

.bank-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 15px;
}

.location {
    font-size: 0.9em;
    font-weight: bold;
            transform: translateY(36px);
    color: var(--main-blue);
    border: 1px solid var(--main-blue);
    padding: 5px 15px;
    border-radius: 15px;
}

.about-us-content {

    color: #4D708B;
}

h1 {
    font-size: 2.2em;
    color: var(--main-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

p {
    margin-bottom: 20px;
    font-size: 1.05em;
    text-align: justify; 
}

.cta-button {
    background-color: #1C75B9;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 12px; 
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    align-self: flex-end; 
    margin-top: 30px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #003366;
}


.image-section {
    flex: 1.3; 
    overflow: hidden;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

@media (max-width: 900px) {
    .container {
        flex-direction: column; 
        margin: 20px;
    }

    .image-section {
        height: 350px; 
    }

    .content-section {
        padding: 20px;
    }
    
    
    .cta-button {
        align-self: center; 
        width: 100%;
    }
}