/* Карточка "О нас" */
.about-card {
    background: linear-gradient(135deg, #11161f, #0d1219);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid #2d3748;
    box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.3);
}

.about-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
    justify-content: center;
}

.about-icon {
    font-size: 2.5rem;
}

.about-header h2 {
    font-size: 2rem;
    margin: 0;
    background: linear-gradient(135deg, #e0e7ff, #b9c8ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-quote {
    background: rgba(34, 60, 108, 0.3);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border-left: 4px solid #ffd966;
}

.about-quote p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e2e8f0;
    font-style: italic;
    margin-bottom: 1rem;
}

.quote-author span {
    color: #ffd966;
    font-weight: 500;
    font-style: normal;
}

.about-description p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #cbd5e1;
}

@media (max-width: 768px) {
    .about-card {
        padding: 1.5rem;
    }

    .about-header h2 {
        font-size: 1.5rem;
    }

    .about-icon {
        font-size: 2rem;
    }

    .about-quote p {
        font-size: 1rem;
    }
}