
        .governance-section {
            padding: 60px 20px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header-centered {
            text-align: center;
            margin-bottom: 60px;
        }

        .ornamental-line {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            gap: 15px;
        }

        .line-decoration {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #2c5f2d, transparent);
        }

        .center-dot {
            width: 10px;
            height: 10px;
            background: #2c5f2d;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(44, 95, 45, 0.3);
        }

        .section-main-title {
            font-size: 2.5rem;
            color: #2c5f2d;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #666;
            font-weight: 300;
        }

        .governance-content {
            display: grid;
            gap: 40px;
        }

        /* Structure Hierarchy */
        .governance-structure {
            background: white;
            border-radius: 15px;
            padding: 50px 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            display: flex;
            align-items: stretch;
            justify-content: center;
            gap: 30px;
            flex-wrap: nowrap;
        }

        .structure-card {
            background: white;
            border: 2px solid #2c5f2d;
            color: #333;
            padding: 35px 25px;
            border-radius: 12px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            flex: 1;
            max-width: 350px;
            min-width: 280px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .structure-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(44, 95, 45, 0.2);
            border-color: #3d7f3e;
        }

        .structure-title {
            font-size: 1.5rem;
            margin-bottom: 18px;
            font-weight: 700;
            color: #2c5f2d;
            text-align: center;
            line-height: 1.3;
        }

        .structure-description {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #555;
            text-align: center;
            flex-grow: 1;
        }

        .structure-stat {
            display: block;
            background: linear-gradient(135deg, #2c5f2d 0%, #3d7f3e 100%);
            color: white;
            padding: 12px 20px;
            border-radius: 25px;
            font-size: 0.95rem;
            font-weight: 600;
            text-align: center;
            margin-top: auto;
        }

        .structure-arrow {
            font-size: 3rem;
            color: #2c5f2d;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            animation: slideRight 2s infinite;
            padding: 0 10px;
        }

        @keyframes slideRight {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(10px); }
        }

        /* New Organizational Structure Section */
        .organizational-structure {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }

        .org-section-title {
            font-size: 2rem;
            color: #2c5f2d;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .org-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #2c5f2d, #3d7f3e);
            border-radius: 2px;
        }

        .org-categories {
            display: grid;
            gap: 30px;
            margin-top: 30px;
        }

        .org-category {
            background: #f8f9fa;
            border-left: 4px solid #2c5f2d;
            padding: 25px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .org-category:hover {
            background: #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transform: translateX(5px);
        }

        .org-category-title {
            font-size: 1.3rem;
            color: #2c5f2d;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .org-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 12px;
        }

        .org-list li {
            display: flex;
            align-items: center;
            padding: 10px;
            background: white;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .org-list li:hover {
            background: #e8f5e9;
            transform: translateX(5px);
        }

        .org-list li::before {
            content: '▪';
            color: #2c5f2d;
            font-size: 1.2rem;
            margin-right: 10px;
            font-weight: bold;
        }

        /* Intervention Field Section */
        .intervention-field {
            background: linear-gradient(135deg, #2c5f2d 0%, #3d7f3e 100%);
            color: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }

        .intervention-title {
            font-size: 2rem;
            margin-bottom: 20px;
            text-align: center;
        }

        .intervention-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .stat-card {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            background: rgba(255,255,255,0.25);
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            display: block;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Partnerships Section */
        .partnerships-section {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }

        .partnerships-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .partnership-category {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            border-top: 3px solid #2c5f2d;
        }

        .partnership-title {
            font-size: 1.2rem;
            color: #2c5f2d;
            margin-bottom: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .partnership-title::before {
            content: '🤝';
            font-size: 1.5rem;
        }

        .partnership-list {
            list-style: none;
        }

        .partnership-list li {
            padding: 10px 0;
            border-bottom: 1px solid #e0e0e0;
            transition: all 0.3s ease;
        }

        .partnership-list li:last-child {
            border-bottom: none;
        }

        .partnership-list li:hover {
            padding-left: 10px;
            color: #2c5f2d;
        }

        /* Leadership Section */
        .leadership-section {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }

        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .leadership-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid #2c5f2d;
            transition: all 0.3s ease;
        }

        .leadership-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .leadership-region {
            font-size: 1.1rem;
            color: #2c5f2d;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .leadership-description {
            font-size: 0.95rem;
            color: #666;
        }

        /* Transparency Section */
        .transparency-info {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .transparency-title {
            font-size: 2rem;
            color: #2c5f2d;
            margin-bottom: 30px;
            text-align: center;
        }

        .transparency-list {
            list-style: none;
            display: grid;
            gap: 20px;
        }

        .transparency-list li {
            display: flex;
            gap: 20px;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .transparency-list li:hover {
            background: #e8f5e9;
            transform: translateX(5px);
        }

        .list-icon {
            flex-shrink: 0;
            width: 30px;
            height: 30px;
            background: #2c5f2d;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-weight: bold;
        }

        .transparency-list li div {
            flex: 1;
        }

        .transparency-list strong {
            color: #2c5f2d;
            display: block;
            margin-bottom: 5px;
        }

        /* Contact Footer */
        .contact-footer {
            background: linear-gradient(135deg, #1a4d1b 0%, #2c5f2d 100%);
            color: white;
            border-radius: 15px;
            padding: 40px;
            text-align: center;
            margin-top: 40px;
        }

        .contact-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .contact-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-item::before {
            content: '📍';
            font-size: 1.2rem;
        }

        .contact-item:nth-child(2)::before {
            content: '📞';
        }

        .contact-item:nth-child(3)::before {
            content: '📧';
        }

        .contact-item:nth-child(4)::before {
            content: '🌐';
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .governance-structure {
                padding: 40px 20px;
                gap: 20px;
            }

            .structure-card {
                min-width: 250px;
                max-width: 300px;
                padding: 30px 20px;
            }

            .structure-title {
                font-size: 1.3rem;
            }

            .structure-description {
                font-size: 0.95rem;
            }

            .structure-arrow {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .section-main-title {
                font-size: 2rem;
            }

            .governance-structure {
                flex-direction: column;
                padding: 25px;
                align-items: center;
            }

            .structure-arrow {
                transform: rotate(90deg);
                margin: 10px 0;
            }

            .structure-card {
                min-width: 100%;
                max-width: 100%;
            }

            .governance-structure,
            .organizational-structure,
            .partnerships-section,
            .transparency-info,
            .leadership-section {
                padding: 25px;
            }

            .org-list {
                grid-template-columns: 1fr;
            }

            .intervention-stats {
                grid-template-columns: 1fr;
            }

            .partnerships-grid,
            .leadership-grid {
                grid-template-columns: 1fr;
            }

            .contact-info {
                flex-direction: column;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .section-main-title {
                font-size: 1.5rem;
            }

            .org-section-title,
            .transparency-title {
                font-size: 1.5rem;
            }

            .stat-number {
                font-size: 2rem;
            }
        }
