.about-hero {
    padding: 4rem 0 2rem;
    background: var(--bg-primary);
}

.about-hero .section-title h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.about-hero .section-title h1 .gradient-text {
    margin-right: 0.35rem;
}

.about-hero .section-title p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
}

.about-section {
    padding: 3rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.about-logo-wrap {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    box-shadow: none;
}

.about-logo-wrap img {
    width: min(380px, 90%);
    height: auto;
    object-fit: contain;
}

.about-text {
    color: var(--text-primary);
}

.about-text h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.team-section {
    padding: 4.5rem 0;
}

.team-list {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.team-card-new {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--card-border);
    border-radius: 14px;
    overflow: hidden;
    background: #111111;
}

.team-card-new img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.team-card-content {
    padding: 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.team-card-content h3 {
    margin: 0;
    font-size: 1.3rem;
}

.team-card-content .position {
    margin: 0;
    color: #93C5FD;
    font-size: 0.95rem;
}

.team-card-content p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.65;
}

.skills-row {
    margin-top: 0.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.skills-row span {
    display: inline-flex;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    font-size: 0.8rem;
    color: #BFDBFE;
    border: 1px solid rgba(96, 165, 250, 0.45);
    background: rgba(59, 130, 246, 0.14);
}

@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-card-new img {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .about-hero .section-title h1 {
        font-size: 2.3rem;
    }

    .about-hero .section-title p {
        font-size: 1rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .team-section {
        padding: 3.3rem 0;
    }

    .team-list {
        grid-template-columns: 1fr;
    }
}
