/* Corporate Responsibility Page Styles */

.responsibility-section {
    margin-bottom: 3rem;
}

.responsibility-section h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--accent-color);
}

.responsibility-card {
    display: flex;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--accent-color);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.responsibility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-icon {
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color, #4CAF50);
    margin-right: 1.5rem;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.card-content p {
    margin-bottom: 0;
    line-height: 1.6;
}

/* Spacer for adding blank space */
.spacer {
    height: 5rem; /* Adjust this value to control the amount of blank space */
}

@media (max-width: 768px) {
    .responsibility-card {
        flex-direction: column;
    }
    
    .card-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Icon colors */
.fa-leaf {
    color: #4CAF50;
}

.fa-recycle {
    color: #2196F3;
}

.fa-graduation-cap {
    color: #FFC107;
}

.fa-users {
    color: #9C27B0;
}

.fa-balance-scale {
    color: #FF5722;
}

.fa-handshake {
    color: #03A9F4;
}
