#csr{
    padding: 5em;
    position: relative;
    background: url('../../images/marketcover.png') no-repeat center center/cover;
}
.csr-title {
    position: relative;
    color: white;
    text-align: center;
    justify-self: auto;
    background-color:  transparent;
    padding-bottom: 0.7em;
    font-family: 'Open Sans', sans-serif;
    z-index: 2;
}
.csr-cover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.591);
    opacity: 0.9;
    z-index: 1;

}

.csr-body{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: left;
    /* height: 80vh; */
    /* background-color: white; */
    margin: 0 auto;
    z-index: 2;
    border-radius: 8px;
    /* background: url('../../images/csr.png') no-repeat center center/cover; */

}

.csr-services {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 1em;
    color:rgb(255, 255, 255);
}

.csr-service {
    position: relative;
    z-index: 2;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    /* background-color: rgba(255, 255, 255, 0.16); */
}

.csr-service h2 {
    margin-bottom: 1em;
    color: white;
}

.csr-service p {
    font-size: 1rem;
    color: white;
}

@media (max-width: 768px) {
    #csr {
        padding: 3em; /* Adjust padding for smaller screens */
    }
    .csr-title {
        font-size: 1.5em; /* Decrease font size for the title */
    }
    .csr-services {
        padding: 2em; /* Reduce padding in services */
        grid-template-columns: 1fr; /* Stack services in a single column */
    }
    .csr-service {
        padding: 15px; /* Reduce padding in service cards */
    }
    .csr-service h2 {
        font-size: 1.2em; /* Smaller heading on mobile */
    }
    .csr-service p {
        font-size: 0.9rem; /* Smaller paragraph text on mobile */
    }
}

@media (max-width: 480px) {
    .csr-services {
        grid-template-columns: 1fr;
        padding: 0.5em;
    }
    
    .csr-service {
        grid-template-columns: 1fr;
        padding: 0.5em;
    }
    
    .csr-service h1, h3{
        font-size: 16px;
        padding: 0em;
    }
    
    p{
        font-size: 12px;
    }
    #csr{
        padding: 1em;
    }
}
