.sustainable-computing-page {
    position: relative;
    overflow: hidden;
    background-color: #F9FAFB;
}

.sustainable-computing-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.benefit-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #F3F4F6;
    height: 100%;
    opacity: 1; /* Set initial opacity to visible */
}

.benefit-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.2);
    border-color: #D1FAE5;
}

.benefit-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ECFDF5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon-container {
    background-color: #D1FAE5;
}

.benefit-icon {
    font-size: 1.5rem;
    color: #10B981;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.benefit-description {
    color: #4B5563;
    margin-bottom: 1.5rem;
}

.benefit-stats {
    background-color: #F9FAFB;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.stat-item {
    margin-bottom: 1rem;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: #6B7280;
    font-size: 0.875rem;
}

.feature-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #F3F4F6;
    height: 100%;
    opacity: 1; /* Set initial opacity to visible */
}

.feature-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #D1FAE5;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: #4B5563;
    font-size: 0.875rem;
}

.story-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.story-content {
    padding: 2rem;
}

.story-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.story-text {
    color: #4B5563;
    margin-bottom: 1.5rem;
}

.story-person {
    display: flex;
    align-items: center;
}

.story-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.story-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-name {
    font-weight: 600;
    color: #111827;
}

.story-role {
    color: #6B7280;
    font-size: 0.875rem;
}

.story-image {
    height: 100%;
    min-height: 300px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-section {
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #A7F3D0;
    margin-top: 3rem;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #065F46;
    margin-bottom: 0.5rem;
}

.cta-description {
    color: #047857;
    margin-bottom: 1.5rem;
}

.hero-image {
    border-radius: 1rem;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blob-background {
    position: absolute;
    opacity: 0.3;
    z-index: -1;
    filter: blur(40px);
}

.blob-1 {
    top: 10%;
    right: 5%;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.1) 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.blob-2 {
    bottom: 10%;
    left: 5%;
    width: 25%;
    height: 25%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(37, 99, 235, 0.1) 70%);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out reverse;
}

.section-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
}

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

.gradient-text {
    background: linear-gradient(90deg, #10B981, #047857);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.approach-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #F3F4F6;
    height: 100%;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.2);
    border-color: #D1FAE5;
}

.approach-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ECFDF5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.approach-card:hover .approach-icon {
    background-color: #10B981;
    color: white;
    transform: scale(1.1) rotate(10deg);
}

.approach-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.approach-description {
    color: #4B5563;
}

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

.stat-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #F3F4F6;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.2);
    border-color: #D1FAE5;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #10B981;
    margin-bottom: 0.5rem;
}

.stat-text {
    color: #4B5563;
    font-weight: 500;
}

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

.grid-image {
    border-radius: 1rem;
    overflow: hidden;
    height: 250px;
}

.grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-image:hover img {
    transform: scale(1.05);
}

.timeline {
    position: relative;
    margin: 3rem 0;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    background: linear-gradient(to bottom, #10B981, #047857);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: -3rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #10B981;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.timeline-content {
    color: #4B5563;
}

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

@media (max-width: 768px) {
    .benefit-card, .feature-card, .approach-card, .stat-card {
        padding: 1.5rem;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline {
        padding-left: 2rem;
    }
    
    .timeline-dot {
        left: -2rem;
        width: 1.5rem;
        height: 1.5rem;
    }
}
