/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--pure-white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: float 20s linear infinite;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: var(--spacing-lg);
    color: var(--pure-white);
}

.about-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

/* Mission & Values Section */
.mission-values {
    padding: 6rem 0;
    background: var(--cloud-white);
}

.mission-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
}

.mission-intro h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: var(--spacing-lg);
}

.mission-intro p {
    font-size: 1.2rem;
    color: var(--slate-grey);
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.value-card {
    background: var(--pure-white);
    padding: var(--spacing-xl);
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(147, 195, 59, 0.1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-green);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-lg);
    display: block;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.value-card p {
    color: var(--slate-grey);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Leadership Team Section */
.leadership {
    padding: 6rem 0;
    background: var(--pure-white);
}

.leadership-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
}

.leadership-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
}

.leadership-header p {
    font-size: 1.2rem;
    color: var(--slate-grey);
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
}

.team-member {
    background: var(--cloud-white);
    padding: var(--spacing-2xl);
    border-radius: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
}

.member-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: 2.5rem;
    color: var(--pure-white);
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(147, 195, 59, 0.3);
}

.member-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--spacing-sm);
}

.member-position {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

.member-bio {
    color: var(--slate-grey);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    text-align: left;
}

.member-expertise {
    margin-bottom: var(--spacing-lg);
}

.member-expertise h4 {
    color: var(--charcoal);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--spacing-sm);
}

.expertise-item {
    background: var(--pure-white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 0.75rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    transition: all 0.2s ease;
}

.expertise-item:hover {
    background: var(--primary-green);
    color: var(--pure-white);
}

.member-contact {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate-grey);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 0.5rem;
    background: var(--pure-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-link:hover {
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(147, 195, 59, 0.2);
}

/* Company Mission Statement */
.company-mission {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--pure-white);
    text-align: center;
}

.company-mission h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    color: var(--pure-white);
}

.company-mission p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 768px) {
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        padding: var(--spacing-lg);
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .member-contact {
        justify-content: space-around;
    }
    
    .about-hero {
        padding: var(--spacing-2xl) 0;
    }
}

@media (max-width: 480px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .member-contact {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-link {
        width: 100%;
        justify-content: center;
    }
}

@keyframes float {
    0% { transform: translateX(-50px); }
    100% { transform: translateX(0px); }
}

/* Modern Design Elements */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #93c33b, #6fa828);
    color: var(--pure-white);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(147, 195, 59, 0.3);
}

.section-title-gradient {
    background: linear-gradient(135deg, #2d3748, #93c33b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* Values Showcase */
.values-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #93c33b, #6fa828);
    transition: left 0.5s ease;
}

.value-card:hover::before {
    left: 0;
}

.value-icon-modern {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #93c33b, #6fa828);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon-modern {
    transform: rotate(360deg);
}

.value-icon-modern svg {
    width: 28px;
    height: 28px;
    color: var(--pure-white);
}

.value-highlight {
    background: linear-gradient(135deg, rgba(147, 195, 59, 0.1), rgba(111, 168, 40, 0.05));
    color: var(--primary-green);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin: 1rem 0;
}

/* Leadership Team Modern Design */
.leadership-header .section-description {
    font-size: 1.2rem;
    color: var(--slate-grey);
    line-height: 1.7;
    margin-top: 1.5rem;
}

.team-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.leader-profile {
    perspective: 1000px;
}

.profile-card {
    background: var(--pure-white);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(147, 195, 59, 0.1);
    position: relative;
    height: auto;
    min-height: 500px;
}

.profile-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 0 30px 60px rgba(147, 195, 59, 0.2);
}

.profile-header {
    background: linear-gradient(135deg, #93c33b 0%, #6fa828 100%);
    padding: 2.5rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M20 20c0-8.837-7.163-16-16-16s-16 7.163-16 16 7.163 16 16 16 16-7.163 16-16zm-16-12c6.627 0 12 5.373 12 12s-5.373 12-12 12-12-5.373-12-12 5.373-12 12-12z'/%3E%3C/g%3E%3C/svg%3E");
    animation: float 20s linear infinite;
}

.avatar-container {
    position: relative;
    display: inline-block;
    z-index: 2;
}

.avatar-gradient {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--pure-white);
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Avatar Modern Styling */
.member-avatar-modern {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.avatar-initials {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--pure-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.avatar-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.role-badge {
    position: absolute;
    bottom: -15px;
    right: -10px;
    background: var(--pure-white);
    color: var(--primary-green);
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(147, 195, 59, 0.2);
}

.profile-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-identity h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.profile-identity p {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.profile-identity .member-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.profile-identity .member-position {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.profile-description {
    margin-bottom: 2rem;
}

.profile-description p {
    color: var(--slate-grey);
    line-height: 1.7;
    font-size: 1rem;
}

.expertise-showcase {
    background: linear-gradient(135deg, rgba(147, 195, 59, 0.05), rgba(111, 168, 40, 0.02));
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.expertise-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.1rem;
}

.skills-icon {
    width: 22px;
    height: 22px;
    color: var(--primary-green);
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tag {
    padding: 0.6rem 1.2rem;
    background: var(--pure-white);
    border: 2px solid rgba(147, 195, 59, 0.3);
    border-radius: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--slate-grey);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tag.highlight {
    background: linear-gradient(135deg, #93c33b, #6fa828);
    color: var(--pure-white);
    border-color: transparent;
}

.tag:not(.highlight):hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.achievement-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: var(--pure-white);
    border-radius: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(147, 195, 59, 0.1);
    transition: all 0.3s ease;
}

.achievement-stat:hover {
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(147, 195, 59, 0.15);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--slate-grey);
    font-weight: 600;
    line-height: 1.2;
}

.profile-footer {
    padding: 0 2rem 2rem;
}

.contact-modern {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.contact-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-btn svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
    z-index: 2;
    position: relative;
}

.contact-btn:hover svg {
    transform: scale(1.1);
}

.contact-btn.email {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: var(--pure-white);
}

.contact-btn.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: var(--pure-white);
}

.contact-btn.github {
    background: linear-gradient(135deg, #333, #111);
    color: var(--pure-white);
}

.contact-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--pure-white);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-btn:hover::before {
    opacity: 1;
}

/* Responsive Design for Modern Elements */
@media (max-width: 768px) {
    .values-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-showcase,
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .profile-card {
        min-height: auto;
    }
    
    .profile-header {
        padding: 2rem 1.5rem 3rem;
    }
    
    .profile-content,
    .profile-footer {
        padding: 1.5rem;
    }
    
    .avatar-gradient,
    .member-avatar-modern {
        width: 100px;
        height: 100px;
    }
    
    .avatar-initials {
        font-size: 2rem;
    }
    
    .mission-values,
    .leadership {
        padding: 3rem 0;
    }
    
    .section-title-gradient {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .profile-identity h3,
    .profile-identity .member-name {
        font-size: 1.5rem;
    }
    
    .profile-identity p,
    .profile-identity .member-position {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .expertise-tags {
        justify-content: center;
    }
    
    .tag {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .contact-modern {
        gap: 0.75rem;
    }
    
    .contact-btn {
        width: 45px;
        height: 45px;
    }
    
    .contact-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .section-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .avatar-gradient,
    .member-avatar-modern {
        width: 90px;
        height: 90px;
    }
    
    .avatar-initials {
        font-size: 1.8rem;
    }
}

/* Our Commitment - Innovative Minimalist Design */
.commitment-manifesto {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 50%, #f0f7f0 100%);
    position: relative;
    overflow: hidden;
}

.manifesto-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.commitment-badge {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.badge-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(147, 195, 59, 0.2), rgba(111, 168, 40, 0.1));
    border-radius: 3rem;
    animation: pulse-commitment 3s ease-in-out infinite;
}

.badge-text {
    position: relative;
    background: linear-gradient(135deg, #93c33b, #6fa828);
    color: var(--pure-white);
    padding: 1rem 2.5rem;
    border-radius: 3rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(147, 195, 59, 0.3);
    display: block;
}

.manifesto-statement {
    margin-bottom: 4rem;
}

.statement-highlight {
    position: relative;
    margin-bottom: 2rem;
}

.highlight-text {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, #2d3748, #93c33b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    line-height: 1.2;
}

.highlight-underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #93c33b, #6fa828);
    margin: 1rem auto;
    border-radius: 2px;
    animation: underline-expand 2s ease-out;
}

.statement-flow {
    margin: 3rem 0;
}

.flow-text {
    font-size: 1.5rem;
    color: var(--slate-grey);
    line-height: 1.6;
    margin: 1rem 0;
    font-weight: 400;
}

.text-emphasis {
    color: var(--charcoal);
    font-weight: 700;
    position: relative;
}

.text-gradient {
    background: linear-gradient(135deg, #93c33b, #6fa828);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 800;
    font-size: 1.8rem;
}

.flow-separator {
    width: 60px;
    height: 2px;
    background: rgba(147, 195, 59, 0.3);
    margin: 2rem auto;
    border-radius: 1px;
}

.commitment-pillars {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: var(--pure-white);
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(147, 195, 59, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-width: 200px;
}

.pillar:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(147, 195, 59, 0.2);
    border-color: var(--primary-green);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #93c33b, #6fa828);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.pillar:hover .pillar-icon {
    transform: scale(1.1) rotate(5deg);
}

.pillar-icon svg {
    width: 28px;
    height: 28px;
    color: var(--pure-white);
}

.pillar-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    text-align: center;
    line-height: 1.3;
}

.manifesto-conclusion {
    position: relative;
    margin-top: 4rem;
    padding-top: 3rem;
}

.conclusion-connector {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #93c33b, transparent);
    margin: 0 auto 2rem;
}

.conclusion-text {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--slate-grey);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

.conclusion-emphasis {
    color: var(--charcoal);
    font-weight: 700;
}

.future-highlight {
    background: linear-gradient(135deg, #93c33b, #6fa828);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 800;
}

.africa-pride {
    color: var(--primary-green);
    font-weight: 800;
    font-size: 1.6rem;
    text-shadow: 0 2px 10px rgba(147, 195, 59, 0.2);
}

.conclusion-accent {
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, #93c33b, #6fa828);
    margin: 2rem auto 0;
    border-radius: 2px;
}

/* Geometric Background Elements */
.geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(147, 195, 59, 0.05), rgba(111, 168, 40, 0.02));
}

.geo-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 5%;
    animation: float-geo 20s linear infinite;
}

.geo-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 8%;
    animation: float-geo 25s linear infinite reverse;
}

.geo-triangle {
    position: absolute;
    top: 60%;
    right: 10%;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid rgba(147, 195, 59, 0.08);
    animation: rotate-geo 30s linear infinite;
}

/* Animations */
@keyframes pulse-commitment {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.4;
    }
}

@keyframes underline-expand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 120px;
        opacity: 1;
    }
}

@keyframes float-geo {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

@keyframes rotate-geo {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design for Commitment Section */
@media (max-width: 768px) {
    .commitment-manifesto {
        padding: 4rem 0;
    }
    
    .commitment-pillars {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .pillar {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .highlight-text {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .flow-text {
        font-size: 1.2rem;
    }
    
    .conclusion-text {
        font-size: 1.2rem;
    }
    
    .geo-1, .geo-2 {
        width: 100px;
        height: 100px;
    }
    
    .geo-triangle {
        border-left-width: 20px;
        border-right-width: 20px;
        border-bottom-width: 35px;
    }
}

@media (max-width: 480px) {
    .badge-text {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .commitment-pillars {
        gap: 1rem;
    }
    
    .pillar {
        padding: 1.5rem 1rem;
    }
    
    .pillar-icon {
        width: 50px;
        height: 50px;
    }
    
    .pillar-icon svg {
        width: 24px;
        height: 24px;
    }
}
