/* Sustainability Overview Page Specific Styles */

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Overview Hero Section */
.overview-hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.overview-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 180px;
    transition: all 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    display: inline;
}

.stat-symbol {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 700;
    margin: 0 5px;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Vision Section */
.vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.vision-text h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.vision-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.vision-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.vision-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 2.5rem;
    color: var(--accent-color);
    min-width: 50px;
}

.feature h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.feature p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.vision-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.image-container {
    position: relative;
    height: 400px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vision-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.image-overlay i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.image-overlay p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Pillars Section */
.pillars-section {
    padding: 100px 0;
    background: white;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pillar-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-top: 4px solid;
}

.pillar-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(50, 50, 93, 0.2), 0 15px 25px rgba(0, 0, 0, 0.15);
}

.pillar-card:nth-child(1) {
    border-top-color: var(--accent-color);
}

.pillar-card:nth-child(2) {
    border-top-color: var(--primary-color);
}

.pillar-card:nth-child(3) {
    border-top-color: #4CAF50;
}

.pillar-header {
    padding: 40px 30px 30px;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.pillar-card:nth-child(1) .pillar-icon {
    background: linear-gradient(135deg, var(--accent-color), #ff8a00);
}

.pillar-card:nth-child(2) .pillar-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.pillar-card:nth-child(3) .pillar-icon {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
}

.pillar-icon i {
    font-size: 2.5rem;
    color: white;
}

.pillar-header h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.6rem;
}

.pillar-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pillar-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

.pillar-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pillar-features li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.pillar-features i {
    color: var(--accent-color);
    min-width: 20px;
}

.pillar-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid var(--light-gray);
}

.pillar-stat {
    text-align: center;
}

.pillar-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: inline;
}

.pillar-stat .stat-symbol {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-left: 2px;
}

.pillar-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 5px;
    text-transform: none;
    letter-spacing: 0;
}

/* Framework Section */
.framework-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.framework-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.framework-diagram {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.framework-circle {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.circle-center i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.circle-center h4 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.3rem;
    max-width: 150px;
    line-height: 1.4;
}

.circle-element {
    position: absolute;
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0.3s ease;
    z-index: 3;
}

.circle-element:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.element-1 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.element-2 {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}

.element-3 {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.element-4 {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
}

.element-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.element-icon i {
    font-size: 1.5rem;
    color: white;
}

.element-content {
    text-align: center;
}

.element-content h5 {
    color: var(--primary-color);
    margin: 0 0 5px;
    font-size: 1rem;
}

.element-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.3;
}

.framework-text h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 2rem;
}

.framework-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.framework-principles {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.principle {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.principle-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #ff8a00);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.principle-icon i {
    font-size: 1.5rem;
    color: white;
}

.principle-content h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.principle-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* SDG Section */
.sdg-section {
    padding: 100px 0;
    background: white;
}

.sdg-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.sdg-text h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 2rem;
}

.sdg-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.sdg-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: white;
}

.highlight-content h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.highlight-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.sdg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sdg-card {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid;
    cursor: pointer;
}

.sdg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.sdg-card[data-sdg="7"] {
    border-color: var(--accent-color);
}

.sdg-card[data-sdg="9"] {
    border-color: var(--primary-color);
}

.sdg-card[data-sdg="13"] {
    border-color: #4CAF50;
}

.sdg-card[data-sdg="6"] {
    border-color: #2196F3;
}

.sdg-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.sdg-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.sdg-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Governance Section */
.governance-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.governance-structure {
    max-width: 800px;
    margin: 60px auto;
}

.governance-level {
    display: flex;
    align-items: center;
    gap: 30px;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.governance-level:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(50, 50, 93, 0.2), 0 15px 25px rgba(0, 0, 0, 0.15);
}

.level-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.level-icon i {
    font-size: 2.5rem;
    color: white;
}

.level-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.level-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.level-metrics {
    display: flex;
    gap: 20px;
}

.level-metrics span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.level-metrics i {
    color: var(--accent-color);
}

.governance-arrow {
    text-align: center;
    margin: 20px 0;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.governance-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.governance-feature {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.governance-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.feature-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Materiality Section */
.materiality-section {
    padding: 100px 0;
    background: white;
}

.materiality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.materiality-text h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 2rem;
}

.materiality-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.materiality-process {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 5px;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.step-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.materiality-matrix {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.matrix-container {
    position: relative;
    height: 400px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
}

.matrix-axis {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    height: 2px;
    background: var(--light-gray);
}

.axis-label {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.axis-high {
    position: absolute;
    top: -25px;
    right: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.axis-low {
    position: absolute;
    top: -25px;
    left: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.matrix-points {
    position: relative;
    width: 100%;
    height: 100%;
}

.matrix-point {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.matrix-point:hover {
    transform: scale(1.5);
}

.matrix-point:hover .point-tooltip {
    opacity: 1;
    transform: translate(-50%, 0);
}

.point-tooltip {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translate(-50%, 10px);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.point-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.8);
}

.point-1 { background: var(--accent-color); top: 20%; left: 80%; }
.point-2 { background: var(--primary-color); top: 40%; left: 70%; }
.point-3 { background: #4CAF50; top: 60%; left: 60%; }
.point-4 { background: var(--accent-color); top: 80%; left: 50%; }
.point-5 { background: #2196F3; top: 30%; left: 40%; }
.point-6 { background: #673AB7; top: 50%; left: 30%; }

.matrix-quadrants {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.quadrant {
    position: absolute;
    width: 50%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.1;
    color: var(--primary-color);
}

.q1 { top: 0; right: 0; }
.q2 { top: 0; left: 0; }
.q3 { bottom: 0; left: 0; }
.q4 { bottom: 0; right: 0; }

.matrix-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.legend-item span:last-child {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Performance Section */
.performance-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.performance-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid var(--accent-color);
}

.performance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(50, 50, 93, 0.2), 0 15px 25px rgba(0, 0, 0, 0.15);
}

.performance-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.performance-content h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.performance-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1rem;
}

.performance-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.performance-stat {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: inline;
}

.stat-unit {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 5px;
}

.progress-timeline {
    margin-top: 80px;
}

.progress-timeline h3 {
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    font-size: 2rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--light-gray);
    transform: translateX(-50%);
}

.timeline-event {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-event:nth-child(odd) {
    flex-direction: row-reverse;
}

.event-year {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 2;
    flex-shrink: 0;
    margin: 0 40px;
}

.event-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex: 1;
    transition: all 0.3s ease;
}

.timeline-event:hover .event-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.event-content h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.event-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA Section */
.overview-cta-section {
    position: relative;
    padding: 120px 0;
    color: white;
    overflow: hidden;
}

.overview-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    z-index: 1;
}

.overview-cta-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: white;
    font-weight: 700;
}

.cta-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit i {
    color: var(--accent-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit span {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-actions h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: white;
}

.cta-buttons-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.btn.btn-accent.btn-large {
    background: linear-gradient(135deg, var(--accent-color), #ff8a00);
    color: white;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    text-align: center;
}

.btn.btn-accent.btn-large:hover {
    background: linear-gradient(135deg, #ff8a00, #ff6b00);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn.btn-outline.btn-large {
    background: transparent;
    color: white;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    text-align: center;
}

.btn.btn-outline.btn-large:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-contact-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    width: 40px;
    text-align: center;
}

.contact-item div {
    flex: 1;
}

.contact-item h5 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .vision-content,
    .framework-content,
    .sdg-content,
    .materiality-content,
    .overview-cta-content {
        gap: 40px;
    }
    
    .pillars-grid,
    .performance-grid,
    .governance-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .hero-stat {
        min-width: 150px;
    }
    
    .vision-content,
    .framework-content,
    .sdg-content,
    .materiality-content,
    .overview-cta-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-event {
        flex-direction: row !important;
        margin-left: 80px;
    }
    
    .event-year {
        position: absolute;
        left: -80px;
        margin: 0;
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .overview-hero {
        height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .hero-stat {
        width: 100%;
        max-width: 300px;
    }
    
    .pillars-grid,
    .performance-grid,
    .governance-features,
    .sdg-grid {
        grid-template-columns: 1fr;
    }
    
    .framework-circle {
        width: 300px;
        height: 300px;
    }
    
    .circle-element {
        width: 100px;
        height: 100px;
    }
    
    .governance-level {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .level-metrics {
        justify-content: center;
    }
    
    .matrix-container {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .framework-circle {
        width: 250px;
        height: 250px;
    }
    
    .circle-element {
        width: 80px;
        height: 80px;
        padding: 10px;
    }
    
    .element-content h5 {
        font-size: 0.9rem;
    }
    
    .cta-buttons-group .btn {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .matrix-container {
        height: 300px;
        padding: 20px;
    }
    
    .materiality-matrix {
        padding: 20px;
    }
    
    .matrix-point {
        width: 15px;
        height: 15px;
    }
    
    .matrix-legend {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .governance-features {
        gap: 15px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .performance-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-stat {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .framework-circle {
        width: 220px;
        height: 220px;
    }
    
    .circle-element {
        width: 70px;
        height: 70px;
    }
    
    .element-icon {
        width: 40px;
        height: 40px;
    }
    
    .element-icon i {
        font-size: 1.2rem;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .cta-actions h3 {
        font-size: 1.5rem;
    }
    
    .timeline-event {
        margin-left: 60px;
    }
    
    .event-year {
        left: -60px;
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}