:root {
    --color-cyan: #00D1FF;
    --color-mint: #ADFFED;
    --color-lime: #E4FF36;
    --color-purple: #E077FF;
    --color-dark: #1a1a1a;
    --color-gray: #666;
}

/* Hero Section */
.governance-hero {
    background: #1a1a1a;
    padding: 140px 20px 100px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.hero-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--color-cyan);
    top: -150px;
    right: -100px;
    animation: float-shape 20s ease-in-out infinite;
}

.hero-shape.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--color-purple);
    bottom: -100px;
    left: -80px;
    animation: float-shape 15s ease-in-out infinite reverse;
}

.hero-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--color-mint);
    top: 40%;
    right: 25%;
    animation: float-shape 18s ease-in-out infinite;
}

@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 209, 255, 0.1);
    border: 2px solid var(--color-cyan);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.hero-badge img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.hero-badge span {
    color: var(--color-cyan);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.governance-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    color: white;
    background: linear-gradient(135deg, #fff 0%, var(--color-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
}

/* Content Section */
.governance-content {
    padding: 100px 20px;
    background: white;
}

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

/* Introduction */
.governance-intro {
    text-align: center;
    margin-bottom: 80px;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(0, 209, 255, 0.05), rgba(173, 255, 237, 0.05));
    border-radius: 20px;
    border-left: 5px solid var(--color-cyan);
}

.intro-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.intro-icon img {
    width: 100%;
    height: 100%;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--color-dark);
    font-weight: 500;
}

/* Governance Sections */
.governance-section {
    margin-bottom: 60px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 20px;
    border-left: 5px solid var(--color-purple);
    transition: all 0.3s ease;
}

.governance-section:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.governance-section.highlight {
    background: linear-gradient(135deg, rgba(228, 255, 54, 0.08), rgba(224, 119, 255, 0.08));
    border-left-color: var(--color-lime);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.section-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-cyan);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
}

.governance-section.highlight .section-number {
    background: var(--color-lime);
    color: var(--color-dark);
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
}

.section-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--color-gray);
    margin-bottom: 20px;
}

.section-content p:last-child {
    margin-bottom: 0;
}

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

.leader-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.leader-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--color-cyan);
}

.leader-details h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.leader-title {
    font-size: 1.1rem;
    color: var(--color-cyan);
    font-weight: 600;
    margin-bottom: 15px;
}

.leader-bio {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin: 0;
}

.leadership-text {
    margin-top: 20px;
}

/* Volunteer Communities */
.volunteer-communities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.community-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.community-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 209, 255, 0.15);
}

.community-badge svg {
    flex-shrink: 0;
    color: var(--color-cyan);
}

.community-badge span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-dark);
}

/* Decision Process */
.decision-process {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    padding: 30px 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 180px;
    max-width: 250px;
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.process-step p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0;
}

.process-arrow {
    font-size: 2rem;
    color: var(--color-cyan);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .governance-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-lead {
        font-size: 1.1rem;
    }
    
    .governance-intro {
        padding: 30px 20px;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .governance-section {
        padding: 25px 20px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .leader-info {
        flex-direction: column;
        text-align: center;
    }
    
    .volunteer-communities {
        grid-template-columns: 1fr;
    }
    
    .decision-process {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
}