.license-section {
    max-width: 800px;
    margin: 0 auto;
}

.license-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--primary-color, #4a90e2);
    padding-bottom: 10px;
}

.license-badge {
    background: var(--danger-color, #e74c3c);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.license-text-container {
    background: rgba(255, 255, 255, 0);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow-sm);
}

.license-lang-block h3 {
    color: var(--color-primary, #4a90e2);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.license-content p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
    /* Dark text as requested */
}

.license-divider {
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 30px 0;
}

.license-note {
    font-style: italic;
    color: var(--danger-color, #e74c3c) !important;
    font-size: 0.9rem;
    margin-top: 20px;
}

.license-actions {
    text-align: center;
    margin-top: 20px;
}

/* Специфические стили для темной темы (только для секции лицензии) */
.license-section {
    --text-primary: #333;
    --text-secondary: #718096;
    text-align: justify;
}