* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header Styles */
.pamphlet-header {
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #e53935 100%);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.pamphlet-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,128L48,144C96,160,192,192,288,186.7C384,181,480,139,576,138.7C672,139,768,181,864,197.3C960,213,1056,203,1152,186.7C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    animation: wave 15s linear infinite;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-5%);
    }
    100% {
        transform: translateX(0);
    }
}

.pamphlet-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    animation: fadeInDown 1s ease-out;
}

.pamphlet-header .subtitle {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    position: relative;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.breadcrumb {
    position: relative;
    margin-top: 10px;
    animation: fadeIn 1s ease-out 0.6s both;
}

.pamphlet-header a {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    opacity: 0.85;
    text-decoration: none;
    transition: opacity 0.3s;
}

.pamphlet-header a:hover {
    opacity: 1;
}

.pamphlet-header a i {
    margin-right: 5px;
}

/* CSR Philosophy Section */
.csr-philosophy-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    padding: 20px 20px;
    position: relative;
    overflow: hidden;
}

.csr-philosophy-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%231a237e" opacity="0.03"/></svg>');
    background-size: cover;
}

.csr-philosophy-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.philosophy-header {
    text-align: center;
    margin-bottom: 20px;
}

.philosophy-header h2 {
    color: #1a237e;
    font-size: 36px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.philosophy-header h2 i {
    color: #e53935;
}

.philosophy-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.principle-card {
    background: white;
    border-radius: 15px;
    padding: 20px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.principle-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a237e, #283593, #e53935);
    transition: height 0.3s ease;
}

.principle-card:hover::before {
    height: 6px;
}

.principle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.principle-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a237e, #283593);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0;
    color: white;
    font-size: 32px;
    transition: transform 0.3s ease;
}

.principle-card:hover .principle-icon {
    transform: scale(1.1) rotate(5deg);
}

.principle-card h3 {
    color: #1a237e;
    margin-bottom: 5px;
    font-size: 22px;
    font-weight: 600;
}

.principle-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Focus Areas Section */
.focus-areas-section {
    padding: 20px 20px;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-header h2 {
    color: #1a237e;
    font-size: 36px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-header h2 i {
    color: #e53935;
}

.section-header p {
    color: #666;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.focus-areas-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.focus-area-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(26, 35, 126, 0.1);
    min-height: 400px;
}

/* Remove animation */
.focus-area-card.animated {
    animation: none;
}

.focus-area-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.area-number {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a237e, #283593);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(26, 35, 126, 0.3);
}

/* Area Image Styles */
.area-image {
    flex: 1;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.focus-area-card:hover .area-image img {
    transform: scale(1.05);
}

/* Area Content Styles */
.area-content {
    flex: 1.2;
    padding: 30px;
    position: relative;
}

.area-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a237e, #283593);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.focus-area-card:hover .area-icon {
    transform: rotate(10deg) scale(1.1);
}

.area-content h3 {
    color: #1a237e;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
}

.area-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 16px;
    padding-right: 20px;
}

.area-initiatives {
    list-style: none;
    padding: 0;
}

.area-initiatives li {
    margin-bottom: 12px;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.area-initiatives li:last-child {
    border-bottom: none;
}

.area-initiatives li i {
    color: #4CAF50;
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 16px;
}

/* Layout variations for alternating sides */
/* Area 1: Image left, Text right */
.area-1 {
    flex-direction: row;
}

/* Area 2: Text left, Image right */
.area-2 {
    flex-direction: row-reverse;
}

/* Area 3: Image left, Text right */
.area-3 {
    flex-direction: row;
}

/* Area 4: Text left, Image right */
.area-4 {
    flex-direction: row-reverse;
}

/* Adjust area number position for area-2 and area-4 */
.area-2 .area-number,
.area-4 .area-number {
    left: auto;
    right: 25px;
}

/* Governance Section */
.governance-section {
    padding: 30px 10px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.governance-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23000000" fill-opacity="0.05" d="M0,160L48,170.7C96,181,192,203,288,197.3C384,192,480,160,576,154.7C672,149,768,171,864,181.3C960,192,1056,192,1152,181.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    animation: wave 20s linear infinite;
}

.governance-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.governance-card, .commitment-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.governance-card:hover, .commitment-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.governance-header, .commitment-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.governance-header i, .commitment-header i {
    font-size: 40px;
    color: #4FC3F7;
}

.governance-header h2, .commitment-header h2 {
    font-size: 32px;
    color: white;
    font-weight: 600;
}

.governance-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 17px;
    opacity: 0.9;
}

.governance-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.governance-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.governance-point:hover {
    background: rgba(255, 255, 255, 0.1);
}

.governance-point i {
    color: #4FC3F7;
    font-size: 22px;
    margin-top: 3px;
    flex-shrink: 0;
}

.governance-point span {
    line-height: 1.7;
    font-size: 16px;
}

.commitment-content p {
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 17px;
}

.commitment-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    position: relative;
    border-left: 5px solid #4FC3F7;
    margin-top: 30px;
}

.commitment-highlight i:first-child {
    position: absolute;
    top: 15px;
    left: 15px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 24px;
}

.commitment-highlight i:last-child {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 24px;
}

.commitment-highlight p {
    margin: 0;
    font-style: italic;
    font-size: 18px;
    text-align: center;
    padding: 0 20px;
}

/* CTA Section - Remove background color */
.cta-section {
    padding: 20px 20px;
    background: #f8f9fa; /* Changed from gradient to solid light color */
    color: #333; /* Changed text color to dark for better contrast */
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #1a237e; /* Add color for better visibility */
}

.cta-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #444; /* Darker color for better contrast */
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.primary-btn {
    background: #1a237e;
    color: white;
}

.primary-btn:hover {
    background: #283593;
    transform: translateY(-3px);
}

.secondary-btn {
    background: transparent;
    color: #1a237e;
    border: 2px solid #1a237e;
}

.secondary-btn:hover {
    background: #1a237e;
    color: white;
    transform: translateY(-3px);
}

.cta-image {
    border-radius: 20px;
    overflow: hidden;
}

.cta-image img {
    width: 500px;
    height: 300px;
    display: block;
    transition: transform 0.5s ease;
}

.cta-image:hover img {
    transform: scale(1.05);
}

/* Original CSR Section Styles (Updated) */
.csr-section {
    width: 90%;
    max-width: 1800px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.csr-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.csr-block:nth-child(1) {
    animation-delay: 0.2s;
}

.csr-block:nth-child(2) {
    animation-delay: 0.4s;
}

.csr-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1a237e, #283593, #e53935);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.csr-block:hover::before {
    transform: scaleX(1);
}

.csr-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.csr-description {
    flex: 1;
    padding: 20px;
    position: relative;
}

.csr-description h2 {
    color: #1a237e;
    margin-bottom: 20px;
    font-size: 28px;
    position: relative;
    display: inline-block;
}

.csr-description h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #e53935;
    transition: width 0.5s ease;
}

.csr-block:hover .csr-description h2::after {
    width: 100px;
}

.csr-description p {
    color: #444;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 20px;
}

.csr-image {
    width: 280px;
    height: 280px;
    flex-shrink: 0;
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.5s ease;
    background: linear-gradient(135deg, #1a237e, #283593);
    padding: 8px;
}

.csr-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.5s ease;
    filter: grayscale(30%);
}

.csr-block:hover .csr-image {
    transform: rotate(5deg) scale(1.05);
}

.csr-block:hover .csr-image img {
    filter: grayscale(0%);
}

/* Animation Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .governance-container {
        grid-template-columns: 1fr;
    }
    
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .focus-areas-container {
        max-width: 1000px;
    }
}

@media (max-width: 992px) {
    .csr-block {
        flex-direction: column;
        text-align: center;
    }
    
    .csr-image {
        margin-bottom: 30px;
    }
    
    .csr-description h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .focus-area-card {
        flex-direction: column !important;
        min-height: auto;
    }
    
    .area-image {
        width: 100%;
        min-height: 300px;
        order: -1;
    }
    
    .area-content {
        width: 100%;
        padding: 40px;
        padding-top: 80px;
    }
    
    .area-number {
        top: 20px;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
    }
    
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pamphlet-header h1 {
        font-size: 32px;
    }
    
    .philosophy-header h2,
    .section-header h2,
    .stats-container h2,
    .cta-content h2 {
        font-size: 28px;
    }
    
    .philosophy-intro,
    .section-header p,
    .stats-subtitle {
        font-size: 16px;
    }
    
    .csr-section {
        gap: 50px;
    }
    
    .csr-block {
        padding: 25px;
    }
    
    .csr-image {
        width: 220px;
        height: 220px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .governance-card,
    .commitment-card {
        padding: 30px;
    }
    
    .governance-header h2,
    .commitment-header h2 {
        font-size: 24px;
    }
    
    .focus-areas-container {
        gap: 40px;
    }
    
    .area-content {
        padding: 30px;
        padding-top: 70px;
    }
    
    .area-image {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .focus-area-card {
        margin: 0 10px;
    }
    
    .area-content {
        padding: 25px 15px;
        padding-top: 70px;
    }
    
    .area-content h3 {
        font-size: 24px;
    }
}