/* ===== ЛИЦЕНЗИИ ===== */
.licenses-section {
    margin: 80px 0;
}

.licenses-section h2 {
    font-size: 56px;
    font-weight: 500;
    color: #433f45;
    margin-bottom: 40px;
}

.licenses-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.license-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}


.license-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #433f45;
    margin-bottom: 8px;
}

.license-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    max-width: 700px;
}

.license-item .btn-small {
    flex: none;
    padding: 8px 20px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .licenses-section h2 {
        font-size: 42px;
    }

    .license-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}