/* CSR Header */
.csr-header {
    padding: 8rem 2rem 4rem;
    background: url('images/csr-bg.jpg') center/cover no-repeat;
    color: white;
    position: relative;
    text-align: center;
}

.csr-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.csr-header .container {
    position: relative;
    z-index: 2;
}

/* CSR Content */
.csr-content {
    padding: 5rem 2rem;
    background: white;
}

.csr-program {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.csr-title {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: bold;
}

.csr-description {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 3rem;
    text-align: justify;
}

.csr-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 10px;
    font-size: 1.3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .csr-header {
        padding: 6rem 1rem 3rem;
    }

    .csr-content {
        padding: 3rem 1rem;
    }

    .csr-title {
        font-size: 2rem;
    }

    .csr-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .csr-cta {
        font-size: 1.1rem;
        padding: 2rem 1.5rem;
    }
}
