.about-hero {
    padding-top: 80px;
    min-height: 40vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 1rem;
}

.about-hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero .subtitle {
    color: #a0a0ff;
    font-size: 1.4rem;
    margin-top: 1.5rem;
    font-family: 'Exo 2', sans-serif;
    letter-spacing: 1px;
}

.about-content {
    padding: 4rem 0;
    position: relative;
}

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

.about-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-header i {
    font-size: 2rem;
    color: #00f0ff;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.card-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
}

.about-card p {
    color: #a0a0ff;
    line-height: 1.6;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    color: #a0a0ff;
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.values-list span {
    color: #00f0ff;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
}

.team-section {
    margin-top: 4rem;
}

.section-title {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, #00f0ff, #7700ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: #00f0ff;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.feature h4 {
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.feature p {
    color: #a0a0ff;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .about-hero .subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-card {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
