/* Ecosystem Page Styles */
.eco-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.eco-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.eco-hero-text {
    font-size: 1.15rem;
    color: #475569;
    max-width: 850px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.eco-image-container {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    margin-bottom: 4.5rem;
}

.eco-image-container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 0.5rem;
}

.eco-section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 3rem;
}

.eco-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03), 0 2px 4px -2px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

.eco-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    border-color: #cbd5e1;
}

.eco-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.eco-icon.society {
    background: #fef2f2;
    color: #dc2626;
}

.eco-icon.foundation {
    background: #f0fdf4;
    color: #16a34a;
}

.eco-icon.technology {
    background: #eff6ff;
    color: #2563eb;
}

.eco-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.eco-card-text {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 0;
}

.eco-commitment {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 4rem 3rem;
    text-align: center;
    margin-top: 5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* Decorative glowing orb effect */
.eco-commitment::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 60%);
    transform: rotate(30deg);
    pointer-events: none;
}

.eco-commitment h3 {
    color: #0f172a;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.eco-commitment p {
    color: #475569;
    font-size: 1.2rem;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.eco-commitment-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    display: block;
}
