.csr-page {
    padding-top: 100px;
    min-height: 100vh;
    background: #ffffff;
}

.csr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.csr-section {
    background: transparent;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

/* First section with large image below content */
.csr-section:first-of-type {
    padding: 2rem 0 3rem 0;
}

.csr-section:first-of-type .section-image-large {
    width: 70%;
    max-width: 800px;
    height: auto;
    object-fit: cover;
    margin: 2rem auto;
    display: block;
    border-radius: 12px;
}

/* Side-by-side layout for sections with images */
.csr-section.has-side-image {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    padding: 3rem 0;
}

.csr-section.has-side-image .image-container {
    flex: 0 0 250px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.csr-section.has-side-image .content-container {
    flex: 1;
}

.csr-section.has-side-image .section-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
}

/* Text-only sections (no side image) */
.csr-section.text-only {
    display: block;
    padding: 3rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.section-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: left;
}

.section-subtitle.center {
    text-align: center;
}

.section-description {
    color: #495057;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.initiative-content, .welfare-content, .carbon-content, .future-content {
    margin-top: 1rem;
}

.initiative-content h3, .welfare-content h3, .carbon-content h3, .future-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 1.5rem 0 0.5rem;
}

.initiative-content p, .welfare-content p, .carbon-content p, .future-content p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.steps-list {
    list-style: decimal;
    padding-left: 1.5rem;
    color: #495057;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.steps-list li {
    margin-bottom: 1rem;
}

.steps-list strong {
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .csr-section.has-side-image {
        flex-direction: column;
        gap: 1rem;
    }
    
    .csr-section.has-side-image .image-container {
        flex: none;
        align-self: center;
    }
    
    .csr-section.has-side-image .section-image {
        width: 150px;
        height: 150px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
    }
    
    .csr-section:first-of-type .section-image-large {
        width: 90%;
        max-width: 100%;
    }
}