.about-mission-section {
    position: relative;
    overflow: hidden;
}

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

.about-card {
    background: rgba(31, 41, 55, 0.7);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(16, 185, 129, 0.2);
}

.mission-image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

.mission-image-container:hover {
    transform: scale(1.02);
}

.mission-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.mission-image-container:hover .mission-image {
    transform: scale(1.05);
}

.mission-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
}

.feature-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    margin-right: 1.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-container {
    background: rgba(16, 185, 129, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.feature-description {
    color: #9CA3AF;
    line-height: 1.6;
}

.decorative-shape {
    position: absolute;
    border-radius: 1.5rem;
    z-index: -1;
}

.decorative-shape.top-left {
    top: -2rem;
    left: -2rem;
    width: 8rem;
    height: 8rem;
    background: rgba(16, 185, 129, 0.1);
    transform: rotate(15deg);
}

.decorative-shape.bottom-right {
    bottom: -2rem;
    right: -2rem;
    width: 10rem;
    height: 10rem;
    border: 4px solid rgba(16, 185, 129, 0.1);
    transform: rotate(-15deg);
}

@media (max-width: 768px) {
    .about-card {
        padding: 1.5rem;
    }
    
    .feature-item {
        flex-direction: column;
    }
    
    .feature-icon-container {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}
