/* Стили для модального окна "О нас" */
.about {
    border-radius: 16px;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 1.75rem auto;
}

.about__header {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    padding: 24px 32px;
    position: relative;
    border: none;
}

.about__title {
    color: #fff;
    font-size: 28px;
    margin: 0;
    font-weight: 500;
    text-align: center;
    letter-spacing: -0.02em;
}

.about__close {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    font-size: 28px;
    opacity: 0.8;
    transition: opacity 0.3s;
    padding: 0;
    cursor: pointer;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__close:hover {
    opacity: 1;
}

.about__body {
    padding: 32px;
    padding-top: 10px;
    color: #374151;
    font-size: 16px;
    line-height: 1.6;
    background: #fff;
}

.about__text {
    margin: 0;
    white-space: pre-line;
}

.about__text-highlight {
    color: #6366F1;
    font-weight: 600;
}

/* Адаптивность */
@media (max-width: 576px) {
    .about {
        margin: 1rem;
    }
    
    .about__header {
        padding: 20px 24px;
    }
    
    .about__title {
        font-size: 24px;
    }
    
    .about__body {
        padding: 24px;
        font-size: 15px;
        padding-top: 10px;
    }
    
    .about__close {
        right: 20px;
        font-size: 24px;
    }
}
