* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
}

.financial-inclusion-section {
    padding: 20px;
}

.sc_title {
    margin-bottom: 20px;
    text-align: center;
    font-size: 2em;
    color: #333;
}

.sections-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.section {
    flex: 1 1 calc(30% - 20px); /* Flex grow and shrink with a base width */
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.description {
    padding: 15px;
    color: white;
    font-weight: bold;
}

.section-image {
    width: 100%;
    height: auto;
}

.benefits {
    padding: 10px;
    font-weight: bold;
    text-align: center;
    background: #254322;
}

h2 {
    margin: 20px 0 10px;
    text-align: center;
    font-size: 1.5em;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .section {
        flex: 1 1 calc(45% - 20px); /* Two columns on medium screens */
    }

    .sc_title {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .section {
        flex: 1 1 100%; /* One column on small screens */
    }

    h2 {
        font-size: 1.4em;
    }

    .description {
        font-size: 0.9em;
    }
}


