/* csr.css */

/* Hero Section */
#csr-hero {
    background-color: var(--primary-color);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

#csr-hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#csr-hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

/* CSR Overview Section */
#csr-overview {
    padding: 60px 0;
    background-color: #f8f8f8;
}

#csr-overview h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.csr-pillars {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}

.pillar {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.pillar:hover {
    transform: translateY(-5px);
}

.pillar i {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pillar h3 {
    font-size: 1.2em;
    color: var(--primary-color);
}

/* Initiative Sections */
#environmental-initiatives,
#social-contributions,
#ethical-business {
    padding: 60px 0;
}

#environmental-initiatives {
    background-color: #e8f5e9;
}

#social-contributions {
    background-color: #e3f2fd;
}

#ethical-business {
    background-color: #fff3e0;
}

.initiative-list {
    list-style-type: none;
    padding: 0;
}

.initiative-list li {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.initiative-list h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* CSR Report Section */
#csr-report {
    padding: 60px 0;
    text-align: center;
    background-color: #f8f8f8;
}

#csr-report h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

#csr-report p {
    max-width: 600px;
    margin: 0 auto 30px;
}

.button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .csr-pillars {
        flex-direction: column;
        align-items: center;
    }

    .pillar {
        width: 100%;
        max-width: 300px;
        margin-bottom: 20px;
    }

    #csr-hero h1 {
        font-size: 2em;
    }

    #csr-hero p {
        font-size: 1em;
    }
}